PegByteParserNotBits Method |
Tests whether the specified bit range does not match an exact value without consuming input.
Namespace: Altaxo.Main.PegParserAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic bool NotBits(
int lowBitNo,
int highBitNo,
byte toMatch
)
Parameters
- lowBitNo Int32
- The one-based index of the lowest bit in the range.
- highBitNo Int32
- The number of bits to include starting at lowBitNo.
- toMatch Byte
- The exact bit value that must not match.
Return Value
Booleantrue if the bit range does not match; otherwise,
false.
See Also