bitAnd() публичный Метод

Apply a bitwise and operation on the current field.
См. также: Builder::bitAnd()
См. также: http://docs.mongodb.org/manual/reference/operator/update/bit/
public bitAnd ( integer $value )
$value integer
Пример #1
0
 /**
  * Apply a bitwise and operation on the current field.
  *
  * @see Expr::bitAnd()
  * @see http://docs.mongodb.org/manual/reference/operator/update/bit/
  * @param int $value
  * @return self
  */
 public function bitAnd($value)
 {
     $this->expr->bitAnd($value);
     return $this;
 }