pub fn hex2bytes_unchecked<H>(hex: H) -> Vec<u8>where H: AsRef<[u8]>,
Just like hex2bytes but without checking.
hex2bytes
assert_eq!( array_bytes::hex2bytes_unchecked("0x4c6f7665204a616e6520466f7265766572"), *b"Love Jane Forever" );