bits or
for bits
Performs bitwise or for integers.
Signature
> bits or (target)
Parameters
target
: target integer to perform bit or
Input/output types:
input | output |
---|---|
int | int |
list<int> | list<int> |
Examples
Apply bits or to two numbers
> 2 | bits or 6
6
Apply logical or to a list of numbers
> [8 3 2] | bits or 2
╭───┬────╮
│ 0 │ 10 │
│ 1 │ 3 │
│ 2 │ 2 │
╰───┴────╯
Tips: Command bits or
was not included in the official binaries by default, you have to build it with --features=extra
flag