Skip to main content

to_lowercase

Function to_lowercase 

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

Convert hex string to lowercase

ยงExample

use dodecet_encoder::hex;

assert_eq!(hex::to_lowercase("ABC"), "abc");