Class: ShEx::Algebra::Operator::Unary Abstract

Inherits:
ShEx::Algebra::Operator show all
Defined in:
lib/shex/algebra/operator.rb

Overview

This class is abstract.

A unary operator.

Operators of this kind take one operand.

Direct Known Subclasses

Language, Not, Start, Stem, Value

Constant Summary collapse

ARITY =
1

Instance Attribute Summary

Attributes inherited from ShEx::Algebra::Operator

#id, #logger, #operands, #options, #schema

Instance Method Summary collapse

Methods inherited from ShEx::Algebra::Operator

#base_uri, #closed?, #each_descendant, #eql?, #expression, #expressions, #focus, #focus=, from_shexj, #inspect, iri, #iri, #json_type, #matched, #matched=, #message, #message=, #not_matched, #not_satisfied, #operand, #parent, #parent=, #satisfied, #satisfied=, #satisfy, #semact?, #semantic_actions, #serialize_value, #status, #structure_error, #to_h, #to_json, #to_sxp, #to_sxp_bin, #triple_expression?, #unmatched, #unmatched=, #unsatisfied, #unsatisfied=, #validate!, value, #value

Constructor Details

#initialize(arg1, options = {}) ⇒ Unary

Returns a new instance of Unary.

Parameters:

Raises:

  • (ArgumentError)


684
685
686
687
# File 'lib/shex/algebra/operator.rb', line 684

def initialize(arg1, options = {})
  raise ArgumentError, "wrong number of arguments (given 2, expected 1)" unless options.is_a?(Hash)
  super
end