SassLiteral::op_xor PHP Method

op_xor() public method

The SassScript xor operation.
public op_xor ( sassLiteral $other ) : SassBoolean
$other sassLiteral the value to xor with this
return SassBoolean SassBoolean object with the value true if this or other, but not both, are true, false if not
    public function op_xor($other)
    {
        return new SassBoolean($this->toBoolean() xor $other->toBoolean());
    }