10 stable releases

Uses old Rust 2015

1.0.9 Aug 24, 2015
1.0.8 Mar 12, 2015
1.0.7 Jan 29, 2015
1.0.1 Dec 24, 2014
1.0.0 Nov 21, 2014

#262 in Algorithms

Download history 15076/week @ 2024-01-08 14472/week @ 2024-01-15 14083/week @ 2024-01-22 14709/week @ 2024-01-29 16270/week @ 2024-02-05 16400/week @ 2024-02-12 15096/week @ 2024-02-19 16348/week @ 2024-02-26 19836/week @ 2024-03-04 25173/week @ 2024-03-11 23539/week @ 2024-03-18 20923/week @ 2024-03-25 20186/week @ 2024-04-01 25142/week @ 2024-04-08 27522/week @ 2024-04-15 22684/week @ 2024-04-22

96,563 downloads per month
Used in 80 crates (34 directly)

MIT license

10KB
170 lines

Natord 1.0.9

Natord on Travis CI

Natural ordering for Rust. (also known as rust-natord) This allows for the comparison like this:

let mut files = vec!("rfc2086.txt", "rfc822.txt", "rfc1.txt");
files.sort_by(|&a, &b| natord::compare(a, b));
assert_eq!(files, ["rfc1.txt", "rfc822.txt", "rfc2086.txt"]);

It provides a compare and compare_ignore_case function for comparing strings, and also a compare_iter function for the customizable algorithm.

There are multiple natural ordering algorithms available. This version of natural ordering is inspired by Martin Pool's strnatcmp.c. See the test cases in the source code to see what it can do and it cannot.

Natord is written by Kang Seonghoon and licensed under the MIT/X11 license.

No runtime deps