class RDF::Enumerable::Enumerator
Extends Enumerator
with {Queryable} and {Enumerable}, which is used by {Enumerable#each_statement} and {Queryable#enum_for}
Public Instance Methods
to_a()
click to toggle source
@return [Array] @note Make sure returned arrays are also queryable
Calls superclass method
RDF::Enumerable#to_a
# File lib/rdf/mixin/enumerable.rb, line 72 def to_a return super.to_a.extend(RDF::Queryable, RDF::Enumerable) end