* Returns an iterator to the end of the dictionary. * * Note: Caller must hold the object lock while using the iterator. * * @returns An iterator. */
| 145 | * @returns An iterator. |
| 146 | */ |
| 147 | Dictionary::Iterator Dictionary::End() |
| 148 | { |
| 149 | ASSERT(Frozen() || OwnsLock()); |
| 150 | |
| 151 | return m_Data.end(); |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * Removes the item specified by the iterator from the dictionary. |