memory-lol 0.2.0

Database for tracking historical social media data
Documentation
1
2
3
4
5
pub fn is_valid_screen_name(value: &str) -> bool {
    value
        .chars()
        .all(|ch| ch.is_ascii_alphanumeric() || ch == '_')
}