decode(_:loading:)

Decodes an ASCII-encoded base-16 string to some (usually trivial) type. This is essentially the same as loading values from raw memory, so this method should only be used to load trivial types.

Base16.swift:126
static func decode<BigEndian>(_ ascii: some Sequence<UInt8>, loading _: BigEndian.Type = BigEndian.self) -> BigEndian?