class Sass::Script::Value::Number

def gte(other)

Raises:
  • (NoMethodError) - if `other` is an invalid type

Returns:
  • (Boolean) - Whether this number is greater than or equal to the other

Parameters:
  • other (Number) -- The right-hand side of the operator
def gte(other)
  raise NoMethodError.new(nil, :gte) unless other.is_a?(Number)
  operate(other, :>=)
end