class Sass::Script::Value::Base

def neq(other)

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

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