# File narray_ext.rb, line 48
  def ==(other)
    other.kind_of?(NArray) &&
      shape == other.shape && 
      eq(other).all?
  end