pub fn remove_spaces(s: &str) -> String
Remove spaces from a spaced hex string
use dodecet_encoder::hex; let unspaced = hex::remove_spaces("123 456 789"); assert_eq!(unspaced, "123456789");