Sha256: 1692cb7c01accc352c2db5de044aa8f9d803baa0d7d7fd7721fa1d3bf3143308

Contents?: true

Size: 918 Bytes

Versions: 17

Compression:

Stored size: 918 Bytes

Contents

module SPARQL; module Algebra
  class Operator
    ##
    # The SPARQL logical `day` operator.
    #
    # @example
    #     (prefix ((: <http://example.org/>))
    #       (project (?s ?x)
    #         (extend ((?x (day ?date)))
    #           (bgp (triple ?s :date ?date)))))
    #
    # @see http://www.w3.org/TR/sparql11-query/#func-day
    class Day < Operator::Unary
      include Evaluatable

      NAME = :day

      ##
      # Returns the day part of arg as an integer.
      #
      # @param  [RDF::Literal] operand
      #   the operand
      # @return [RDF::Literal]
      # @raise  [TypeError] if the operand is not a simple literal
      def apply(operand)
        raise TypeError, "expected an RDF::Literal::DateTime, but got #{operand.inspect}" unless operand.is_a?(RDF::Literal::DateTime)
        RDF::Literal(operand.object.day)
      end
    end # Day
  end # Operator
end; end # SPARQL::Algebra

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
sparql-1.99.1 lib/sparql/algebra/operator/day.rb
sparql-1.1.9.1 lib/sparql/algebra/operator/day.rb
sparql-1.99.0 lib/sparql/algebra/operator/day.rb
sparql-1.1.9 lib/sparql/algebra/operator/day.rb
sparql-1.1.8 lib/sparql/algebra/operator/day.rb
sparql-1.1.7 lib/sparql/algebra/operator/day.rb
sparql-1.1.6 lib/sparql/algebra/operator/day.rb
sparql-1.1.5 lib/sparql/algebra/operator/day.rb
sparql-1.1.4 lib/sparql/algebra/operator/day.rb
sparql-1.1.3 lib/sparql/algebra/operator/day.rb
sparql-1.1.2.1 lib/sparql/algebra/operator/day.rb
sparql-1.1.2 lib/sparql/algebra/operator/day.rb
sparql-1.1.1 lib/sparql/algebra/operator/day.rb
sparql-1.1.0 lib/sparql/algebra/operator/day.rb
sparql-1.1.0p0 lib/sparql/algebra/operator/day.rb
sparql-1.0.8 lib/sparql/algebra/operator/day.rb
sparql-1.0.7 lib/sparql/algebra/operator/day.rb