MCPcopy Create free account
hub / github.com/TyberiusPrime/KeyToKey / test_hexdigit_to_keycode

Function test_hexdigit_to_keycode

src/lib.rs:421–428  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

419mod tests {
420 #[test]
421 fn test_hexdigit_to_keycode() {
422 for c in "ABCDEFHIJKLMOJPQRSTUVWYXYZabcdefghijklmnopqrstuvwxyz".chars() {
423 let escaped = c.escape_unicode();
424 for out_c in escaped.skip(3).take_while(|x| *x != '}') {
425 println!("{}", out_c);
426 }
427 }
428 }
429}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected