17 releases

0.2.8 Jun 23, 2020
0.2.7 Jan 21, 2020
0.1.7 Jan 5, 2020
0.1.6 Jun 24, 2019
0.0.6 Jun 3, 2019

#1308 in Filesystem

Download history 42/week @ 2024-11-13 53/week @ 2024-11-20 134/week @ 2024-11-27 45/week @ 2024-12-04 42/week @ 2024-12-11 43/week @ 2024-12-18 1/week @ 2024-12-25 7/week @ 2025-01-01 14/week @ 2025-01-08 66/week @ 2025-01-15 18/week @ 2025-01-29 25/week @ 2025-02-05 51/week @ 2025-02-12 26/week @ 2025-02-19 16/week @ 2025-02-26

119 downloads per month

MIT license

9KB
149 lines

toolbox::{alg, ds, vfs}

Crates.io

Tested on linux, windows.

Further support for this library is not planned. At the moment, it is a "wrapper" of its two dependencies:

alg

Search algorithms:

namecomplexity
max O(n)
min O(n)
binary O(log2n)

Sort algorithms:

namecomplexity
selection O(n2)
quick O(n log2n)

ds

Matrix data structure (two-dimensional array)

vfs

Virtual file system for convenient work with relative paths.

Dependencies

~39KB