This interface describes a byte array pattern with optional gaps in it. It may additionally store the type and grouping of numbers stored in an array.
interface Pattern.Bytes {
// Properties
${pattern}: Uint8Array;
${gaps}?: ${ISelection};
${type}?: ${DisplayAs};
${group}?: ${GroupBy};
${bigEndian}?: boolean;
}
// This interface is not available in managed environment
// This interface is not available in native environment
pattern: Uint8Array;
// This property is not available in managed environment
// This property is not available in native environment
Data array
gaps?: ${ISelection};
// This property is not available in managed environment
// This property is not available in native environment
Optional gaps in a pattern.
type?: ${DisplayAs};
// This property is not available in managed environment
// This property is not available in native environment
Type of the pattern values. Used by the pattern editor.
group?: ${GroupBy};
// This property is not available in managed environment
// This property is not available in native environment
type?: DisplayAs;
Grouping mode. Used by the pattern editor.
bigEndian?: boolean;
// This property is not available in managed environment
// This property is not available in native environment
true if the pattern was generated from big-endian data. Used by the pattern editor.
@end-interface