class RDF::N3::Algebra::Str::NotLessThan

True iff the string is NOT less than the object when ordered according to Unicode(tm) code order.

Constants

NAME
URI

Public Instance Methods

apply(left, right) click to toggle source

@param [RDF::Literal] left

a literal

@param [RDF::Literal] right

a literal

@return [RDF::Literal::Boolean]

Calls superclass method RDF::N3::Algebra::Str::LessThan#apply
# File lib/rdf/n3/algebra/str/not_less_than.rb, line 13
def apply(left, right)
  RDF::Literal(super != RDF::Literal::TRUE)
end