* Returns an iterator to the end of the array. * * Note: Caller must hold the object lock while using the iterator. * * @returns An iterator. */
| 110 | * @returns An iterator. |
| 111 | */ |
| 112 | Array::Iterator Array::End() |
| 113 | { |
| 114 | ASSERT(Frozen() || OwnsLock()); |
| 115 | |
| 116 | return m_Data.end(); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Returns the number of elements in the array. |
no test coverage detected