Class: RDF::Query::Pattern
Instance Method Summary collapse
-
#executable? ⇒ Boolean
Returns
true
as this is executable. -
#ndvars ⇒ Array<RDF::Query::Variable>
Return the non-destinguished variables contained within this pattern.
-
#vars ⇒ Array<RDF::Query::Variable>
Return the variables contained within this pattern.
Instance Method Details
#executable? ⇒ Boolean
Returns true
as this is executable.
554 |
# File 'lib/sparql/algebra/extensions.rb', line 554 def executable?; true; end |
#ndvars ⇒ Array<RDF::Query::Variable>
Return the non-destinguished variables contained within this pattern
539 540 541 |
# File 'lib/sparql/algebra/extensions.rb', line 539 def ndvars vars.reject(&:distinguished?) end |
#vars ⇒ Array<RDF::Query::Variable>
Return the variables contained within this pattern
546 547 548 |
# File 'lib/sparql/algebra/extensions.rb', line 546 def vars variables.values end |