Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
Bit-Manipulation Functions
◄More Info► ◄Up► ◄Contents► ◄Index► ◄Back►
─────Intrinsic Functions: Bit-Manipulation──────────────────────────────────
Argument Function
Name Definition Type Type
IOR (intA, intB) Inclusive or int Same as argument
ISHL (intA, intB) Logical shift int Same as argument
ISHFT (intA, intB) Logical shift int Same as argument
ISHA (intA, intB) Arithmetic shift int Same as argument
ISHC (intA, intB) Rotate int Same as argument
IEOR (intA, intB) Exclusive or int Same as argument
IAND (intA, intB) Logical product int Same as argument
NOT (intA) Logical complement int Same as argument
IBCLR (intA, intB) Bit clear int Same as argument
IBSET (intA, intB) Bit set int Same as argument
IBCHNG (intA, intB) Bit change int Same as argument
BTEST (intA, intB) Bit test int log
See Also: ◄Argument-Type Abbreviations►
-♦-