File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -594,7 +594,7 @@ $bitAnd
594
594
The ``$bitAnd`` aggregation stage performs a bitwise AND operation on the given
595
595
arguments. ``$bitAnd`` can take // describe arguments
596
596
597
- ..code-block:: csharp
597
+ .. code-block:: csharp
598
598
var queryable = collection.AsQueryable()
599
599
.Select(x => x.P & x.Q
600
600
);
@@ -615,7 +615,7 @@ $bitOr
615
615
The ``$bitOr`` aggregation stage performs a bitwise OR operation on the given
616
616
arguments. ``$bitOr`` can take // describe arguments - same as AND and XOR
617
617
618
- ..code-block:: csharp
618
+ .. code-block:: csharp
619
619
var queryable = collection.AsQueryable()
620
620
.Select(x => x.P | x.Q
621
621
);
@@ -628,7 +628,7 @@ $bitNot
628
628
The ``$bitNot`` aggregation stage performs a bitwise NOT operation on the given
629
629
argument. ``$bitOr`` only takes one argument.
630
630
631
- ..code-block:: csharp
631
+ .. code-block:: csharp
632
632
var queryable = collection.AsQueryable()
633
633
.Select(x => !x.P
634
634
);
@@ -641,7 +641,7 @@ $bitXor
641
641
The ``$bitXor`` aggregation stage performs a bitwise XOR operation on the given
642
642
arguments. ``$bitXor`` can take // describe arguments - same as AND and XOR
643
643
644
- ..code-block:: csharp
644
+ .. code-block:: csharp
645
645
var queryable = collection.AsQueryable()
646
646
.Select(x => x.P ^ x.Q
647
647
);
You can’t perform that action at this time.
0 commit comments