aboutsummaryrefslogtreecommitdiff
path: root/crates/vfs/src/file_set.rs
Commit message (Collapse)AuthorAgeFilesLines
* Make VFS join methods fallibleJonas Schievink2020-06-261-1/+1
|
* New VFSAleksey Kladov2020-06-231-10/+5
|
* Speedup VFS::partitionAleksey Kladov2020-06-191-9/+23
| | | | | | | | | | 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/+99