Houdini 21.0 Nodes APEX nodes

BitwiseAnd

Performs a bitwise AND operation.

On this page
Since 21.0

The bitwise AND operation performs a logical conjunction on each bit of a set of integers (their binary representations). If a particular bit of all the integers is 1, the corresponding bit in the result is 1. If a particular bit of any of the integers is 0, the corresponding bit in the result is 0. For example:

Binary Input A

Binary Input B

Binary Output (A AND B)

1100

1010

1000

1111

0000

0000

1001

0011

0001

1111

1010

1010

Inputs

inputs: VariadicArg<Int>

Variadic input of integer values.

Outputs

result: Int

The computed bitwise integer value.

See also

APEX nodes