bitXor() public method

Apply a bitwise xor operation on the current field.
See also: Builder::bitXor()
See also: http://docs.mongodb.org/manual/reference/operator/update/bit/
public bitXor ( integer $value )
$value integer
Esempio n. 1
0
 /**
  * Apply a bitwise xor operation on the current field.
  *
  * @see Expr::bitXor()
  * @see http://docs.mongodb.org/manual/reference/operator/update/bit/
  * @param int $value
  * @return self
  */
 public function bitXor($value)
 {
     $this->expr->bitXor($value);
     return $this;
 }