Method: Code::Type::Or#initialize
- Defined in:
- lib/code/type/or.rb
#initialize(left, right) ⇒ Or
Returns a new instance of Or.
8 9 10 11 |
# File 'lib/code/type/or.rb', line 8 def initialize(left, right) @left = left @right = right end |