blob: 411a3f3013a3ba81f6540b60583f4609c3c58fd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
pub mod byte_string;
pub mod code_point_string;
pub mod unicode_string;
pub use byte_string::*;
pub use code_point_string::*;
pub use unicode_string::*;
/// Mirror of Symfony's `u()` / `b()` helper functions.
pub fn b(_string: &str) -> ByteString {
todo!()
}
pub fn s(_string: &str) -> UnicodeString {
todo!()
}
|