pub fn format_spaced(s: &str) -> StringExpand description
Format a hex string with spacing for readability
Adds a space every 3 characters (every dodecet).
ยงExample
use dodecet_encoder::hex;
let formatted = hex::format_spaced("123456789");
assert_eq!(formatted, "123 456 789");