module RDF::Indexable
A mixin that can be used to mark RDF
repository implementations as indexable.
@since 0.3.0
Public Instance Methods
Source
# File lib/rdf/mixin/indexable.rb, line 22 def index! raise NotImplementedError, "#{self.class}#index!" end
Indexes ‘self`.
@abstract @return [self]
Source
# File lib/rdf/mixin/indexable.rb, line 13 def indexed? false end
Returns ‘true` if `self` is indexed at present.
@abstract @return [Boolean]