Sha256: 63724570de94905b4d8960444c9cb41bfd310118c7e21e0a02fc6835530a646c

Contents?: true

Size: 868 Bytes

Versions: 4

Compression:

Stored size: 868 Bytes

Contents

module RDF::N3::Algebra::Str
  # True iff the string is less than the object when ordered according to Unicode(tm) code order.
  class LessThan < RDF::N3::Algebra::ResourceOperator
    NAME = :strLessThan
    URI = RDF::N3::Str.lessThan

    ##
    # Resolves inputs as strings.
    #
    # @param [RDF::Term] resource
    # @param [:subject, :object] position
    # @return [RDF::Literal]
    # @see RDF::N3::ResourceOperator#evaluate
    def resolve(resource, position:)
      resource if resource.term?
    end

    # Both subject and object are inputs.
    def input_operand
      RDF::N3::List.new(values: operands)
    end

    ##
    # @param  [RDF::Literal] left
    #   a literal
    # @param  [RDF::Literal] right
    #   a literal
    # @return [RDF::Literal::Boolean]
    def apply(left, right)
      RDF::Literal(left.to_s < right.to_s)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rdf-n3-3.3.0 lib/rdf/n3/algebra/str/less_than.rb
rdf-n3-3.2.1 lib/rdf/n3/algebra/str/less_than.rb
rdf-n3-3.2.0 lib/rdf/n3/algebra/str/less_than.rb
rdf-n3-3.1.2 lib/rdf/n3/algebra/str/less_than.rb