* Returns an iterator to the beginning of the dictionary. * * Note: Caller must hold the object lock while using the iterator. * * @returns An iterator. */
| 131 | * @returns An iterator. |
| 132 | */ |
| 133 | Dictionary::Iterator Dictionary::Begin() |
| 134 | { |
| 135 | ASSERT(Frozen() || OwnsLock()); |
| 136 | |
| 137 | return m_Data.begin(); |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Returns an iterator to the end of the dictionary. |