Rust-Programming/str_sort/README.md

386 B

String sorting

This repository contains a set of functions to sort the characters of a string. Various different functions are available:

  • sort the ascii characters only (unsafe but efficient)
  • sort the UTF-8 characters (requires memory allocation)
  • sort the UTF-8 characters (more complex implementation but efficient)

Licensed under GPLv2 or later, same as the entire repository