pub fn hex2bytes_unchecked(hex: &str) -> Bytes
Expand description

Just like hex2bytes but without checking.

Examples

assert_eq!(
	array_bytes::hex2bytes_unchecked("0x4c6f7665204a616e6520466f7265766572"),
	*b"Love Jane Forever"
);