bitsAnyClear() 공개 메소드

Matches documents where any of the bit positions given by the query are clear.
또한 보기: Builder::bitsAnyClear()
또한 보기: https://docs.mongodb.org/manual/reference/operator/query/bitsAnyClear/
public bitsAnyClear ( integer | array | MongoBinData $value )
$value integer | array | MongoBinData
예제 #1
0
파일: Builder.php 프로젝트: alcaeus/mongodb
 /**
  * Matches documents where any of the bit positions given by the query are
  * clear.
  *
  * @see Expr::bitsAnyClear()
  * @see https://docs.mongodb.org/manual/reference/operator/query/bitsAnyClear/
  * @param int|array|\MongoBinData $value
  * @return $this
  */
 public function bitsAnyClear($value)
 {
     $this->expr->bitsAnyClear($value);
     return $this;
 }