Docs Menu

Docs HomeDevelop ApplicationsMongoDB Manual

$bitOr (aggregation)

On this page

  • Definition
  • Syntax
  • Behavior
  • Examples
  • Learn More

New in version 6.3.

$bitOr

Returns the result of a bitwise or operation on an array of int and long values.

The $bitOr operator has the following syntax:

{ $bitOr: { [ <expression1>, <expression2>, ... ] }

If the operands include both integers and long values, MongoDB sign-extends the calculated integer result and returns a long value. Otherwise, if the operands include only integers or only longs, MongoDB returns results with the corresponding value type.

Note

All numbers in mongosh are doubles, not integers. To to specify integers in mongosh, use the NumberInt() or the NumberLong() constructor. To learn more, see Int32 or Long.

To learn how your MongoDB driver handles numeric values, refer to your driver's documentation.

If any arguments in the array are of a different data type such as a string, double, or decimal, MongoDB returns an error.

If the argument is an empty array, the operation returns NumberInt(0).

If any of the arguments in the array equate to null, the operation returns null.

The examples on this page use the switches collection, which contains the following documents:

db.switches.insertMany( [
{ _id: 0, a: NumberInt(0), b: NumberInt(127) },
{ _id: 1, a: NumberInt(2), b: NumberInt(3) },
{ _id: 2, a: NumberInt(3), b: NumberInt(5) }
] )

The following aggregation uses the $bitOr operator in the $project stage:

db.switches.aggregate( [
{
$project: {
result: {
$bitOr: [ "$a", "$b" ]
}
}
}
])

The operation returns the following results:

[
{ _id: 0, result: 127 },
{ _id: 1, result: 3 },
{ _id: 2, result: 7 }
]

The following aggregation uses the $bitOr operator in the $project stage:

db.switches.aggregate( [
{
$project: {
result: {
$bitOr: [ "$a", NumberLong("63") ]
}
}
}
])

The operation returns the following results:

[
{ _id: 0, result: Long("0") },
{ _id: 1, result: Long("2") },
{ _id: 2, result: Long("3") }
]
← $bitNot (aggregation)