Class: RDF::Enumerable::Enumerator

Inherits:
Enumerator
  • Object
show all
Includes:
RDF::Enumerable, Isomorphic, Queryable
Defined in:
vendor/bundler/ruby/3.3.0/bundler/gems/rdf-196b73b4a78a/lib/rdf/mixin/enumerable.rb,
vendor/bundler/ruby/3.3.0/bundler/gems/rdf-isomorphic-6add041cd0be/lib/rdf/isomorphic.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

#existentials, #universals

Instance Method Summary collapse

Methods included from Isomorphic

#bijection_to, #isomorphic_with?

Methods included from RDF::Enumerable

add_entailment, #canonicalize, #canonicalize!, #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?, #graph_names, #invalid?, #method_missing, #object?, #objects, #predicate?, #predicates, #project_graph, #quad?, #quads, #respond_to_missing?, #statement?, #statements, #subject?, #subjects, #supports?, #term?, #terms, #to_h, #to_set, #triple?, #triples, #valid?, #validate!

Methods included from Util::Aliasing::LateBound

#alias_method

Methods included from Countable

#count, #empty?

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, #to_sparql

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class RDF::Enumerable

Instance Method Details

#to_aArray

Note:

Make sure returned arrays are also queryable

Returns:



72
73
74
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/rdf-196b73b4a78a/lib/rdf/mixin/enumerable.rb', line 72

def to_a
  return super.to_a.extend(RDF::Queryable, RDF::Enumerable)
end