aboutsummaryrefslogtreecommitdiff
path: root/crates/vfs/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* New VFSAleksey Kladov2020-06-231-1/+0
|
* Speedup VFS::partitionAleksey Kladov2020-06-191-0/+3
| | | | | | | | | | The task of `partition` function is to bin the flat list of paths into disjoint filesets. Ideally, it should be incremental -- each new file should be added to a specific fileset. However, preliminary measurnments show that it is actually fast enough if we just optimize this to use a binary search instead of a linear scan.
* New VFS APIAleksey Kladov2020-06-161-0/+138