ambition/src/helpers.rs
Muhammad Nauman Raza 905524512d feat: initial porting to egui
Former-commit-id: 9d3753be324466c78bf14fcc14e89fc414812f4a
2023-12-02 14:22:05 +00:00

8 lines
195 B
Rust

pub fn titlecase(s: &str) -> String {
let mut c = s.chars();
match c.next() {
None => String::new(),
Some(f) => f.to_uppercase().collect::<String>() + c.as_str(),
}
}