Binary Functions
A list of all binary functions supported by Cribl Search.
Name | Description |
---|---|
binary_and | Returns a result of the bitwise and operation between two values. |
binary_not | Returns a bitwise negation of the input value. |
binary_or | Returns a result of the bitwise or operation of the two values. |
binary_shift_left | Returns binary shift left operation on a pair of numbers. |
binary_shift_right | Returns binary shift right operation on a pair of numbers. |
binary_xor | Returns the bitwise xor operation of the two values. |
from_binary_string | Takes a binary string and returns a number. |
to_binary_string | Takes a number and returns a binary string. |