class RDF::N3::Algebra::Str::NotGreaterThan

True iff the string is NOT greater 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]

# File lib/rdf/n3/algebra/str/not_greater_than.rb, line 13
def apply(left, right)
  RDF::Literal(super != RDF::Literal::TRUE)
end