class RDF::N3::Algebra::Math::NotLessThan
True iff the subject is a string representation of a number which is NOT LESS than a number of which the object is a string representation.
Constants
- NAME
- URI
Public Instance Methods
apply(term1, term2)
click to toggle source
Returns TRUE if ‘term1` is greater than or equal to `term2`.
@param [RDF::Term] term1
an RDF term
@param [RDF::Term] term2
an RDF term
@return [RDF::Literal::Boolean] ‘true` or `false` @raise [TypeError] if either operand is not an RDF
term or operands are not comperable
@see RDF::Term#==
Calls superclass method
RDF::N3::Algebra::Math::LessThan#apply
# File lib/rdf/n3/algebra/math/not_less_than.rb, line 21 def apply(term1, term2) RDF::Literal(super != RDF::Literal::TRUE) end