class Sass::Value::Calculation

def ==(other)

Returns:
  • (::Boolean) -
def ==(other)
  other.is_a?(Sass::Value::Calculation) &&
    other.name == name &&
    other.arguments == arguments
end