Class: RDF::Enumerable::Enumerator
- Includes:
- RDF::Enumerable, Queryable
- Defined in:
- vendor/bundler/ruby/2.7.0/bundler/gems/rdf-0e84e3dd0307/lib/rdf/mixin/enumerator.rb
Overview
Extends Enumerator with Queryable and RDF::Enumerable, which is used by #each_statement and Queryable#enum_for
Instance Attribute Summary
Attributes included from RDF::Enumerable
Instance Method Summary collapse
Methods included from RDF::Enumerable
add_entailment, #dump, #each_graph, #each_object, #each_predicate, #each_quad, #each_statement, #each_subject, #each_term, #each_triple, #entail, #enum_graph, #enum_object, #enum_predicate, #enum_quad, #enum_statement, #enum_subject, #enum_term, #enum_triple, #graph_names, #has_graph?, #has_object?, #has_predicate?, #has_quad?, #has_statement?, #has_subject?, #has_term?, #has_triple?, #invalid?, #method_missing, #objects, #predicates, #project_graph, #quads, #respond_to_missing?, #statements, #subjects, #supports?, #terms, #to_h, #to_set, #triples, #valid?, #validate!
Methods included from Util::Aliasing::LateBound
Methods included from Countable
Methods included from Isomorphic
#bijection_to, #isomorphic_with?
Methods included from Queryable
#concise_bounded_description, #first, #first_literal, #first_object, #first_predicate, #first_subject, #first_value, #lint, #query, #query_execute, #query_pattern, #query_without_sparql
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class RDF::Enumerable
Instance Method Details
#to_a ⇒ Array
Make sure returned arrays are also queryable
13 14 15 |
# File 'vendor/bundler/ruby/2.7.0/bundler/gems/rdf-0e84e3dd0307/lib/rdf/mixin/enumerator.rb', line 13 def to_a return super.to_a.extend(RDF::Queryable, RDF::Enumerable) end |