aboutsummaryrefslogtreecommitdiff
path: root/crates/vfs/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Minor, push allocations downAleksey Kladov2020-07-141-2/+2
|
* Optimize VFS processingAleksey Kladov2020-07-101-1/+1
|
* Also reload when adding new examples, tests, etcAleksey Kladov2020-07-101-1/+1
|
* 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