Sha256: 37625e48ab47201203fdd14e8de18b9533c2b97b4b20746f933cb835907ea9ba

Contents?: true

Size: 992 Bytes

Versions: 24

Compression:

Stored size: 992 Bytes

Contents

module SPARQL; module Algebra
  class Operator
    include Evaluatable

    ##
    # The SPARQL numeric `add` operator.
    #
    # @example
    #   (+ 1 ?x)
    #   (add 1 ?x)
    #
    # @see http://www.w3.org/TR/xpath-functions/#func-numeric-add
    class Add < Operator::Binary
      NAME = [:+, :add]

      ##
      # Returns the arithmetic sum of the operands.
      #
      # @param  [RDF::Literal::Numeric] left
      #   a numeric literal
      # @param  [RDF::Literal::Numeric] right
      #   a numeric literal
      # @return [RDF::Literal::Numeric]
      # @raise  [TypeError] if either operand is not a numeric literal
      def apply(left, right)
        case
          when left.is_a?(RDF::Literal::Numeric) && right.is_a?(RDF::Literal::Numeric)
            left + right
          else raise TypeError, "expected two RDF::Literal::Numeric operands, but got #{left.inspect} and #{right.inspect}"
        end
      end
    end # Add
  end # Operator
end; end # SPARQL::Algebra

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
sparql-0.3.0 lib/sparql/algebra/operator/add.rb
sparql-0.1.1 lib/sparql/algebra/operator/add.rb
sparql-0.1.0 lib/sparql/algebra/operator/add.rb
sparql-0.0.2 lib/sparql/algebra/operator/add.rb