This repository has been archived on 2024-09-29. You can view files and clone it, but cannot push or open issues or pull requests.
ambition/src/helpers.rs
Muhammad Nauman Raza a0c00a810a
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(),
}
}