Method: SassC::Script::Value::Map#eq

Defined in:
lib/sassc/script/value/map.rb

#eq(other) ⇒ Object

See Also:

  • Value#eq


41
42
43
# File 'lib/sassc/script/value/map.rb', line 41

def eq(other)
  SassC::Script::Value::Bool.new(other.is_a?(Map) && value == other.value)
end