Class: RDF::N3::Algebra::NotImplemented

Inherits:
SPARQL::Algebra::Operator show all
Includes:
Builtin
Defined in:
lib/rdf/n3/algebra/not_implemented.rb

Overview

A Notation3 Formula combines a graph with a BGP query.

Instance Attribute Summary

Attributes included from Enumerable

#existentials, #universals

Instance Method Summary collapse

Methods included from Builtin

#each, #evaluate, #hash, #input_operand, #rank, #to_uri

Methods inherited from SPARQL::Algebra::Operator

#formulae, #operands=

Constructor Details

#initialize(*args, predicate:, **options) ⇒ NotImplemented

Returns a new instance of NotImplemented.

Raises:

  • (NotImplementedError)


9
10
11
# File 'lib/rdf/n3/algebra/not_implemented.rb', line 9

def initialize(*args, predicate:, **options)
  raise NotImplementedError, "The #{predicate} operator is not implemented"
end