Method: RDF::Query::Solution#each_name
- Defined in:
- lib/rdf/query/solution.rb
#each_name {|name| ... } ⇒ Enumerator Also known as: each_key
Enumerates over every variable name in this solution.
81 82 83 84 |
# File 'lib/rdf/query/solution.rb', line 81 def each_name(&block) @bindings.each_key(&block) if block_given? enum_name end |