| 7740 | const_iterator begin() const { return array_; } |
| 7741 | const_iterator end() const { return array_ + size_; } |
| 7742 | bool operator==(const NativeArray& rhs) const { |
| 7743 | return size() == rhs.size() && |
| 7744 | ArrayEq(begin(), size(), rhs.begin()); |
| 7745 | } |
| 7746 | |
| 7747 | private: |
| 7748 | // Initializes this object; makes a copy of the input array if |