]> git.proxmox.com Git - rustc.git/blame - vendor/tinystr/src/lib.rs
New upstream version 1.69.0+dfsg1
[rustc.git] / vendor / tinystr / src / lib.rs
CommitLineData
487cf647
FG
1// This file is part of ICU4X. For terms of use, please see the file
2// called LICENSE at the top level of the ICU4X source tree
3// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
4
5//! `tinystr` is a utility crate of the [`ICU4X`] project.
04454e1e 6//!
487cf647 7//! It includes [`TinyAsciiStr`], a core API for representing small ASCII-only bounded length strings.
04454e1e 8//!
487cf647
FG
9//! It is optimized for operations on strings of size 8 or smaller. When use cases involve comparison
10//! and conversion of strings for lowercase/uppercase/titlecase, or checking
11//! numeric/alphabetic/alphanumeric, `TinyAsciiStr` is the edge performance library.
04454e1e 12//!
487cf647 13//! # Examples
04454e1e 14//!
487cf647
FG
15//! ```rust
16//! use tinystr::TinyAsciiStr;
04454e1e 17//!
487cf647 18//! let s1: TinyAsciiStr<4> = "tEsT".parse().expect("Failed to parse.");
04454e1e
FG
19//!
20//! assert_eq!(s1, "tEsT");
21//! assert_eq!(s1.to_ascii_uppercase(), "TEST");
22//! assert_eq!(s1.to_ascii_lowercase(), "test");
23//! assert_eq!(s1.to_ascii_titlecase(), "Test");
9ffffee4
FG
24//! assert!(s1.is_ascii_alphanumeric());
25//! assert!(!s1.is_ascii_numeric());
04454e1e 26//!
487cf647
FG
27//! let s2 = TinyAsciiStr::<8>::try_from_raw(*b"New York")
28//! .expect("Failed to parse.");
04454e1e
FG
29//!
30//! assert_eq!(s2, "New York");
31//! assert_eq!(s2.to_ascii_uppercase(), "NEW YORK");
32//! assert_eq!(s2.to_ascii_lowercase(), "new york");
33//! assert_eq!(s2.to_ascii_titlecase(), "New york");
9ffffee4 34//! assert!(!s2.is_ascii_alphanumeric());
487cf647 35//! ```
04454e1e 36//!
487cf647 37//! # Details
04454e1e 38//!
487cf647
FG
39//! When strings are of size 8 or smaller, the struct transforms the strings as `u32`/`u64` and uses
40//! bitmasking to provide basic string manipulation operations:
41//! * `is_ascii_numeric`
42//! * `is_ascii_alphabetic`
43//! * `is_ascii_alphanumeric`
44//! * `to_ascii_lowercase`
45//! * `to_ascii_uppercase`
46//! * `to_ascii_titlecase`
47//! * `PartialEq`
48//!
49//! `TinyAsciiStr` will fall back to `u8` character manipulation for strings of length greater than 8.
50
04454e1e 51//!
487cf647
FG
52//! [`ICU4X`]: ../icu/index.html
53
54// https://github.com/unicode-org/icu4x/blob/main/docs/process/boilerplate.md#library-annotations
9ffffee4 55#![cfg_attr(not(any(test, feature = "std")), no_std)]
487cf647
FG
56#![cfg_attr(
57 not(test),
58 deny(
59 clippy::indexing_slicing,
60 clippy::unwrap_used,
61 clippy::expect_used,
62 clippy::panic,
63 clippy::exhaustive_structs,
64 clippy::exhaustive_enums,
65 missing_debug_implementations,
66 )
67)]
04454e1e 68
487cf647 69mod macros;
04454e1e 70
487cf647
FG
71mod ascii;
72mod asciibyte;
73mod error;
74mod int_ops;
04454e1e 75
487cf647
FG
76#[cfg(feature = "serde")]
77mod serde;
04454e1e 78
487cf647
FG
79#[cfg(feature = "databake")]
80mod databake;
04454e1e 81
487cf647
FG
82#[cfg(feature = "zerovec")]
83mod ule;
04454e1e 84
487cf647
FG
85#[cfg(any(feature = "serde", feature = "alloc"))]
86extern crate alloc;
04454e1e 87
487cf647
FG
88pub use ascii::TinyAsciiStr;
89pub use error::TinyStrError;
04454e1e 90
487cf647
FG
91/// These are temporary compatability reexports that will be removed
92/// in a future version.
93pub type TinyStr4 = TinyAsciiStr<4>;
94/// These are temporary compatability reexports that will be removed
95/// in a future version.
96pub type TinyStr8 = TinyAsciiStr<8>;
97/// These are temporary compatability reexports that will be removed
98/// in a future version.
99pub type TinyStr16 = TinyAsciiStr<16>;
04454e1e 100
487cf647
FG
101#[test]
102fn test_size() {
103 assert_eq!(
104 core::mem::size_of::<TinyStr4>(),
105 core::mem::size_of::<Option<TinyStr4>>()
106 );
107 assert_eq!(
108 core::mem::size_of::<TinyStr8>(),
109 core::mem::size_of::<Option<TinyStr8>>()
110 );
04454e1e 111}
487cf647
FG
112// /// Allows unit tests to use the macro
113// #[cfg(test)]
114// mod tinystr {
115// pub use super::{TinyAsciiStr, TinyStrError};
116// }