BitAnd

Not available in this language yet.
BitAnd( value_1, value_2, ... )
BitAnd( value_1, value_2, ... )
BitAnd( value_1, value_2, ... )
Not available in this language yet.
BitAnd( value_1, value_2, ... )

Description

The BitAnd function returns the bit to the result if the bit exists in all numbers. The arguments must be numbers, and fractional values are truncated before the operation is applied. The result is the bitwise AND of all the arguments.

Parameters

Argument Type Definition and Requirements

value

List of Numbers

A single value or a list of values to bitwise AND.

Returns

A number which is the bitwise AND of all values.

Examples

The query below executes an array of independent bitwise AND operations and returns the answer in the result array. The result array position matches the position in the execution array.

Not available in this language yet.
Not available in this language yet.
System.out.println(
    client.query(
        Arr(
            BitAnd(Value(0),Value(0)),
            BitAnd(Value(1),Value(0)),
            BitAnd(Value(1),Value(1)),
            BitAnd(Value(7),Value(3))
        )
    ) .get());
[0, 0, 1, 3]
client.query([
  q.BitAnd(0, 0),
  q.BitAnd(1, 0),
  q.BitAnd(1, 1),
  q.BitAnd(7, 3),
])
.then((ret) => console.log(ret))
[ 0, 0, 1, 3 ]
Not available in this language yet.
println(Await.result(
  client.query(
    Arr(
      BitAnd(0, 0),
      BitAnd(1, 0),
      BitAnd(1, 1),
      BitAnd(7, 3)
    )
  ),
  5.seconds
))
[0, 0, 1, 3]

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!