class Sass::Script::Literal

def neq(other)

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

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