Class: Algebrick::Matchers::Atom

Inherits:
Wrapper show all
Defined in:
lib/algebrick/matchers/atom.rb

Instance Attribute Summary

Attributes inherited from Wrapper

#something

Attributes inherited from Abstract

#value

Instance Method Summary collapse

Methods inherited from Wrapper

#==, call, #children

Methods inherited from Abstract

#!, #&, #==, #===, #>, #assign!, #assign?, #assign_to_s, #assigned?, #assigns, #case, #children, #children_including_self, #inspect, #matched?, #to_a, #|

Methods included from TypeCheck

#Child!, #Child?, #Match!, #Match?, #Type!, #Type?

Constructor Details

#initialize(something) ⇒ Atom

Returns a new instance of Atom.



18
19
20
21
# File 'lib/algebrick/matchers/atom.rb', line 18

def initialize(something)
  Type! something, Algebrick::Atom
  super something
end

Instance Method Details

#to_sObject



23
24
25
# File 'lib/algebrick/matchers/atom.rb', line 23

def to_s
  assign_to_s + "#{@something.name}.to_m"
end