Crates.io | human-sort |
lib.rs | human-sort |
version | 0.2.2 |
source | src |
created_at | 2019-01-25 09:57:10.944309 |
updated_at | 2019-04-14 18:10:42.384393 |
description | Human sort (natural sort) implementation |
homepage | |
repository | https://github.com/paradakh/human-sort |
max_upload_size | |
id | 110593 |
size | 6,803 |
Utilities to sort and compare strings with numeric symbols in human-friendly order.
It built over iterators and compare string slices char by char (except for numerals) until the first difference found without creating Strings or another structures with whole data from provided &str, so doesn't require lots of memory.
use human_sort::sort;
let mut arr = ["file10.txt", "file2.txt", "file1.txt"];
sort(&mut arr);
assert_eq!(arr, ["file1.txt", "file2.txt", "file10.txt"]);
use std::cmp::Ordering;
use human_sort::compare;
assert_eq!(compare("item200", "item3"), Ordering::Greater);
Licensed under MIT license.