$bitNot(聚合)
定义
6.3 版本中的新功能。
语法
$bitNot
操作符的语法如下:
{ $bitNot: <expression> }
表达式可以是单个参数,也可以是具有一个int
或long
元素的数组。
行为
注意
如果数组中的任何参数属于不同的数据类型,例如字符串、双精度浮点数或十进制数,MongoDB 将返回错误。
如果表达式的计算结果为null
,则操作返回null
。
例子
本页上的示例使用switches
集合:
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) } ] )
以下聚合在 $project
阶段使用$bitNot
操作符:
db.switches.aggregate( [ { $project: { result: { $bitNot: "$a" } } } ])
操作返回以下结果:
[ { _id: 0, result: -1 }, { _id: 1, result: -3 }, { _id: 2, result: -4 } ]