const-str

compile-time string operations

Examples

```rust asserteq!(conststr::to_lowercase!("HELLO"), "hello");

asserteq!(conststr::to_uppercase!("hello"), "HELLO");

asserteq!(conststr::replace!("this is old", "old", "new"), "this is new"); ```