Sha256: ebf6760bec3e004444410383ad7344bb8e306e7756469faf532e17451731c852
Contents?: true
Size: 997 Bytes
Versions: 7
Compression:
Stored size: 997 Bytes
Contents
module SPARQL; module Algebra class Operator ## # The SPARQL ascending sort operator. # # @example # (prefix ((foaf: <http://xmlns.com/foaf/0.1/>)) # (project (?name) # (order ((asc ?name)) # (bgp (triple ?x foaf:name ?name))))) # # @see https://www.w3.org/TR/sparql11-query/#modOrderBy class Asc < Operator::Unary include Evaluatable NAME = :asc ## # Returns the evaluation of its operand. Default comparison is in # ascending order. Ordering is applied in {Order}. # # @param [RDF::Query::Solution] bindings # a query solution containing zero or more variable bindings # @param [Hash{Symbol => Object}] options ({}) # options passed from query # @return [RDF::Term] def evaluate(bindings, **options) operand(0).evaluate(bindings, depth: options[:depth].to_i + 1, **options) end end # Asc end # Operator end; end # SPARQL::Algebra
Version data entries
7 entries across 7 versions & 1 rubygems