Skip to content

Library for comparing and sorting strings lexicographically

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

surrealdb/lexicmp

lexicmp

The lexicmp library enables comparing and sorting strings using lexicographical and natural sorting semantics. This means that any Unicode characters such as á or ß are treated like their closest ASCII character: á is treated as a, ß is treated as ss. This library also ensures that emojis are transliterated before being sorted. When using natural sorting, numbers are sorted naturally, ensuring that 50 is sorted before 100, skipping characters that aren't alphanumeric, ensuring that f-5 is next to f5. If different strings have the same ASCII representation (e.g. "Foo" and "fóò"), it falls back to the default method from the standard library, ensuring that sorting is always deterministic, and constitute a total order.

docs.rs Crates.io

Features

  • Compare strings lexicographically
  • Compare strings naturally with support for numbers
  • Compare strings sensitively and case insensitively
  • Compare strings, skipping non-alphanumeric characters
  • Compare strings lexicographically and naturally together
  • Handle unicode characters, foreign languages, and emoji characters
  • Does not allocate memory on the heap, instead using iterators

Original

This code is forked originally from lexical-sort, licensed under the Apache 2.0 and MIT licenses.

About

Library for comparing and sorting strings lexicographically

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Code of conduct

Security policy

Stars

Watchers

Forks

Languages