コード例 #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;
 }