summaryrefslogtreecommitdiffstats
path: root/vendor/tinystr/examples
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/tinystr/examples')
-rw-r--r--vendor/tinystr/examples/main.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/tinystr/examples/main.rs b/vendor/tinystr/examples/main.rs
new file mode 100644
index 000000000..2e0d2a10b
--- /dev/null
+++ b/vendor/tinystr/examples/main.rs
@@ -0,0 +1,18 @@
+use tinystr::{TinyStr4, TinyStr8};
+
+fn main() {
+ let s1: TinyStr4 = "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_eq!(s1.is_ascii_alphanumeric(), true);
+
+ let s2: TinyStr8 = "New York".parse().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.is_ascii_alphanumeric(), false);
+}