| 736 | /// <param name="result">The result.</param> |
| 737 | template<typename ArrayAllocation> |
| 738 | void GetValues(Array<ValueType, ArrayAllocation>& result) const |
| 739 | { |
| 740 | for (ConstIterator i = Begin(); i.IsNotEnd(); ++i) |
| 741 | result.Add(i->Value); |
| 742 | } |
| 743 | |
| 744 | public: |
| 745 | Iterator Begin() |