Method: NilClass#and

Defined in:
lib/multiarray.rb

#and(other) ⇒ FalseClass

Boolean ‘and’ operation

Parameters:

Returns:

See Also:



197
198
199
200
201
202
203
204
# File 'lib/multiarray.rb', line 197

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