예제 #1
0
파일: Builder.php 프로젝트: cosmow/riak
 /**
  * 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;
 }