class Sass::Script::Value::Base

def unary_not

Returns:
  • (Sass::Script::Value::Bool) - True if this value is the same as the other,

Parameters:
  • other (Value) -- The right-hand side of the operator
def unary_not
  Sass::Script::Value::Bool.new(!to_bool)
end