macro_rules! kebab {
($s:expr) => { ... };
}Expand description
Converts a string or ident to kebab-case.
kebab!("HelloWorld")→"hello-world"(String)
macro_rules! kebab {
($s:expr) => { ... };
}Converts a string or ident to kebab-case.
kebab!("HelloWorld") → "hello-world" (String)