class Axiom::Function::Predicate::GreaterThanOrEqualTo

A predicate representing a greater than or equal to test between operands

Public Class Methods

inverse() click to toggle source

Return the inverse predicate class

@example

GreaterThanOrEqualTo.inverse  # => LessThan

@return [Class<LessThan>]

@api public

# File lib/axiom/function/predicate/greater_than_or_equal_to.rb, line 31
def self.inverse
  LessThan
end
operation() click to toggle source

Return the GreaterThanOrEqualTo operation

@example

GreaterThanOrEqualTo.operation  # => :>=

@return [Symbol]

@api public

# File lib/axiom/function/predicate/greater_than_or_equal_to.rb, line 19
def self.operation
  :>=
end
reverse() click to toggle source

Return the reverse predicate class

@example

GreaterThanOrEqualTo.reverse  # => LessThanOrEqualTo

@return [Class<LessThanOrEqualTo>]

@api public

# File lib/axiom/function/predicate/greater_than_or_equal_to.rb, line 43
def self.reverse
  LessThanOrEqualTo
end