BytePattern Type
Represents a pattern of bytes that can be used to match a byte array. A
BytePattern is an array of ByteValue, where each ByteValue (ByteValue) can be either AnyByte (which matches any byte) or
OneByte (which matches a specific byte value).
let pattern = [| AnyByte; OneByte 0xFF |]