28 releases

0.7.5 Nov 16, 2023
0.7.3 Sep 23, 2023
0.7.1 Jan 26, 2023
0.7.0 Sep 26, 2022
0.3.2 Oct 28, 2019

#25 in Data structures

Download history 32065/week @ 2023-12-23 37965/week @ 2023-12-30 47619/week @ 2024-01-06 49308/week @ 2024-01-13 48131/week @ 2024-01-20 53259/week @ 2024-01-27 58263/week @ 2024-02-03 58714/week @ 2024-02-10 61380/week @ 2024-02-17 57614/week @ 2024-02-24 59638/week @ 2024-03-02 63614/week @ 2024-03-09 60367/week @ 2024-03-16 64579/week @ 2024-03-23 61260/week @ 2024-03-30 51646/week @ 2024-04-06

247,833 downloads per month
Used in 418 crates (34 directly)

Custom license

215KB
4K SLoC

tinystr crates.io

tinystr is a utility crate of the ICU4X project.

It includes TinyAsciiStr, a core API for representing small ASCII-only bounded length strings.

It is optimized for operations on strings of size 8 or smaller. When use cases involve comparison and conversion of strings for lowercase/uppercase/titlecase, or checking numeric/alphabetic/alphanumeric, TinyAsciiStr is the edge performance library.

Examples

use tinystr::TinyAsciiStr;

let s1: TinyAsciiStr<4> = "tEsT".parse().expect("Failed to parse.");

assert_eq!(s1, "tEsT");
assert_eq!(s1.to_ascii_uppercase(), "TEST");
assert_eq!(s1.to_ascii_lowercase(), "test");
assert_eq!(s1.to_ascii_titlecase(), "Test");
assert!(s1.is_ascii_alphanumeric());
assert!(!s1.is_ascii_numeric());

let s2 = TinyAsciiStr::<8>::try_from_raw(*b"New York")
    .expect("Failed to parse.");

assert_eq!(s2, "New York");
assert_eq!(s2.to_ascii_uppercase(), "NEW YORK");
assert_eq!(s2.to_ascii_lowercase(), "new york");
assert_eq!(s2.to_ascii_titlecase(), "New york");
assert!(!s2.is_ascii_alphanumeric());

Details

When strings are of size 8 or smaller, the struct transforms the strings as u32/u64 and uses bitmasking to provide basic string manipulation operations:

  • is_ascii_numeric
  • is_ascii_alphabetic
  • is_ascii_alphanumeric
  • to_ascii_lowercase
  • to_ascii_uppercase
  • to_ascii_titlecase
  • PartialEq

TinyAsciiStr will fall back to u8 character manipulation for strings of length greater than 8.

More Information

For more information on development, authorship, contributing etc. please visit ICU4X home page.

Dependencies

~0.3–0.8MB
~20K SLoC