Method: NilClass#or

Defined in:
lib/multiarray.rb

#or(other) ⇒ FalseClass, TrueClass

Boolean ‘or’ operation

Parameters:

Returns:

See Also:



213
214
215
216
217
218
219
220
# File 'lib/multiarray.rb', line 213

def or( other )
  unless other.is_a? Hornetseye::Node
    other
  else
    x, y = other.coerce self
    x.or y
  end
end