sortedvec icon indicating copy to clipboard operation
sortedvec copied to clipboard

Rust vector types without dependencies that enable quick lookups

Results 5 sortedvec issues
Sort by recently updated
recently updated
newest added

The DNA example is probably easily vectorized since the keys are just wrapped `[u8]`s, so we don't really see a speed advantage over the regular `sortedvec!`. We should add an...

Getting the exact right key type might be burdensome in some cases, e.g. when we expect a `&str` and a `&String` is passed. Can we accept `K: AsRef` or `K:...