Method: Sass::Script::Value::Base#neq

Defined in:
lib/sass/script/value/base.rb

#neq(other) ⇒ Sass::Script::Value::Bool

The SassScript != operation. Note that this returns a Sass::Script::Value::Bool object, not a Ruby boolean.

Parameters:

  • other (Value)

    The right-hand side of the operator

Returns:

[View source]

69
70
71
# File 'lib/sass/script/value/base.rb', line 69

def neq(other)
  Sass::Script::Value::Bool.new(!eq(other).to_bool)
end