Class: 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
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!
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(**options)})" end |