class RDF::Query::Pattern

Public Instance Methods

executable?() click to toggle source

Returns `true` as this is executable.

@return [Boolean] `true`

# File lib/sparql/algebra/extensions.rb, line 502
def executable?; true; end
ndvars() click to toggle source

Return the non-destinguished variables contained within this pattern @return [Array<RDF::Query::Variable>]

# File lib/sparql/algebra/extensions.rb, line 487
def ndvars
  vars.reject(&:distinguished?)
end
vars() click to toggle source

Return the variables contained within this pattern @return [Array<RDF::Query::Variable>]

# File lib/sparql/algebra/extensions.rb, line 494
def vars
  variables.values
end