Header menu logo B2R2

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). The following pattern matches any byte followed by the byte 0xFF: let pattern = [| AnyByte; OneByte 0xFF |]

Type something to start searching.