| 546 | /// <param name="result">The result.</param> |
| 547 | template<typename ArrayAllocation> |
| 548 | void GetItems(Array<T, ArrayAllocation>& result) const |
| 549 | { |
| 550 | for (ConstIterator i = Begin(); i.IsNotEnd(); ++i) |
| 551 | result.Add(i->Item); |
| 552 | } |
| 553 | |
| 554 | public: |
| 555 | Iterator Begin() |