Bits Module This module adds built-in functions for bit manipulations.builtin bits_and(@values);
Do a bitwise AND between all arguments and return the result.
Do a bitwise OR between all arguments and return the result.
Do a bitwise XOR between all arguments and return the result.
Do a bitwise NOT of the argument and return the result.
builtin bits_shl(value, bits);
Do a bitwise SHIFT-LEFT of the argument and return the result.
builtin bits_shr(value, bits);
Do a bitwise SHIFT-RIGHT of the argument and return the result.
Generated by SPLDOC. | http://www.clifford.at/spl/ |