Skip to main content

to_lowercase

Function to_lowercase 

pub fn to_lowercase(s: &str) -> String
Expand description

Common key transformation: convert to lowercase.

ยงExamples

use noyalib::with::singleton_map_with::to_lowercase;

assert_eq!(to_lowercase("GetRequest"), "getrequest");
assert_eq!(to_lowercase("POST"), "post");