macro_rules! hex2array {
($input:expr) => { ... };
}Expand description
Provides a const array from given string literal.
Valid characters are [0-9a-fA-F], and the hex string should not start
with the 0x prefix.
macro_rules! hex2array {
($input:expr) => { ... };
}Provides a const array from given string literal.
Valid characters are [0-9a-fA-F], and the hex string should not start
with the 0x prefix.