Sha256: 099fe9cf31a0ac01a4ad94e57063b80733ff3f44c6e8d7653a62b6de4eafcdbb

Contents?: true

Size: 1012 Bytes

Versions: 42

Compression:

Stored size: 1012 Bytes

Contents

module SPARQL; module Algebra
  class Operator
    ##
    # The SPARQL numeric `subtract` operator.
    #   (- ?x ?y)
    #   (subtract ?x ?y)
    #
    # @see http://www.w3.org/TR/xpath-functions/#func-numeric-subtract
    class Subtract < Operator::Binary
      include Evaluatable

      NAME = [:-, :subtract]

      ##
      # Returns the arithmetic difference 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 # Subtract
  end # Operator
end; end # SPARQL::Algebra

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
sparql-0.1.0 lib/sparql/algebra/operator/subtract.rb
sparql-0.0.2 lib/sparql/algebra/operator/subtract.rb