class Sass::Script::Literal

def unary_not

Returns:
  • (Bool) - True if this literal is the same as the other,

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