compile-time string operations
```rust asserteq!(conststr::to_lowercase!("HELLO"), "hello");
asserteq!(conststr::to_uppercase!("hello"), "HELLO");
asserteq!(conststr::replace!("this is old", "old", "new"), "this is new"); ```