Class: SPARQL::Algebra::Operator::Count
- Inherits:
-
SPARQL::Algebra::Operator
- Object
- SPARQL::Algebra::Operator
- SPARQL::Algebra::Operator::Count
- Includes:
- Aggregate
- Defined in:
- lib/sparql/algebra/operator/count.rb
Overview
The SPARQL count
set function.
[127] Aggregate::= ‘COUNT’ ‘(’ ‘DISTINCT’? ( ‘*’ | Expression ) ‘)’ …
Constant Summary collapse
- NAME =
:count
Constants inherited from SPARQL::Algebra::Operator
Constants included from Expression
Instance Attribute Summary
Attributes inherited from SPARQL::Algebra::Operator
Instance Method Summary collapse
-
#apply(enum, **options) ⇒ RDF::Literal::Integer
Count is a SPARQL set function which counts the number of times a given expression has a bound, and non-error value within the aggregate group.
-
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
Methods included from Aggregate
#aggregate, #replace_aggregate!, #replace_vars!
Methods inherited from SPARQL::Algebra::Operator
#aggregate?, arity, #base_uri, base_uri, base_uri=, #bind, #boolean, #constant?, #deep_dup, #each_descendant, #eql?, #evaluatable?, evaluate, #executable?, #first_ancestor, for, #initialize, #inspect, #ndvars, #node?, #operand, #optimize, #optimize!, #parent, #parent=, #prefixes, prefixes, prefixes=, #rewrite, #to_binary, to_sparql, #to_sxp, #to_sxp_bin, #validate!, #variable?, #variables, #vars
Methods included from Expression
cast, #constant?, #evaluate, extension, extension?, extensions, for, #invalid?, new, #node?, open, #optimize, #optimize!, parse, register_extension, #to_sxp_bin, #valid?, #validate!, #variable?
Constructor Details
This class inherits a constructor from SPARQL::Algebra::Operator
Instance Method Details
#apply(enum, **options) ⇒ RDF::Literal::Integer
Count is a SPARQL set function which counts the number of times a given expression has a bound, and non-error value within the aggregate group.
60 61 62 |
# File 'lib/sparql/algebra/operator/count.rb', line 60 def apply(enum, **) RDF::Literal(enum.length) end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
69 70 71 72 73 |
# File 'lib/sparql/algebra/operator/count.rb', line 69 def to_sparql(**) distinct = operands.first == :distinct args = distinct ? operands[1..-1] : operands "COUNT(#{'DISTINCT ' if distinct}#{args.empty? ? '*' : args.to_sparql(**)})" end |