Skip to main content

to_uppercase

Function to_uppercase 

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

Common key transformation: convert to UPPERCASE.

ยงExamples

use noyalib::with::singleton_map_with::to_uppercase;

assert_eq!(to_uppercase("GetRequest"), "GETREQUEST");
assert_eq!(to_uppercase("post"), "POST");