Sha256: 82130923461cbf16a02008bc6914d8da5601546cf0fc9300b705a055fb5ebd67

Contents?: true

Size: 1.4 KB

Versions: 5

Compression:

Stored size: 1.4 KB

Contents

module SPARQL; module Algebra
  class Operator
    ##
    # The SPARQL `isNumeric` operator.
    #
    # Note numeric denotes typed literals with datatypes xsd:integer, xsd:decimal, xsd:float, and xsd:double, not derived types.
    #
    # @example
    #   (prefix ((xsd: <http://www.w3.org/2001/XMLSchema#>)
    #            (: <http://example.org/things#>))
    #     (project (?x ?v)
    #       (filter (isNumeric ?v)
    #         (bgp (triple ?x :p ?v)))))
    #
    # @see https://www.w3.org/TR/sparql11-query/#func-isNumeric
    class IsNumeric < Operator::Unary
      include Evaluatable

      NAME = :isnumeric

      ##
      # Returns `true` if the operand is an `RDF::Literal::Numeric`, `false`
      # otherwise.
      #
      # @param  [RDF::Term] term
      #   an RDF term
      # @return [RDF::Literal::Boolean] `true` or `false`
      # @raise  [TypeError] if the operand is not an RDF term
      def apply(term)
        case term
          when RDF::Literal::NonPositiveInteger then RDF::Literal::FALSE
          when RDF::Literal::NonNegativeInteger then RDF::Literal::FALSE
          when RDF::Literal::Long then RDF::Literal::FALSE
          when RDF::Literal::Numeric then RDF::Literal::TRUE
          when RDF::Term    then RDF::Literal::FALSE
          else raise TypeError, "expected an RDF::Term, but got #{term.inspect}"
        end
      end
    end # IsNumeric
  end # Operator
end; end # SPARQL::Algebra

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
sparql-3.1.6 lib/sparql/algebra/operator/is_numeric.rb
sparql-3.1.5 lib/sparql/algebra/operator/is_numeric.rb
sparql-3.1.4 lib/sparql/algebra/operator/is_numeric.rb
sparql-3.1.3 lib/sparql/algebra/operator/is_numeric.rb
sparql-3.1.2 lib/sparql/algebra/operator/is_numeric.rb