| 725 | /// <param name="result">The result.</param> |
| 726 | template<typename ArrayAllocation> |
| 727 | void GetKeys(Array<KeyType, ArrayAllocation>& result) const |
| 728 | { |
| 729 | for (ConstIterator i = Begin(); i.IsNotEnd(); ++i) |
| 730 | result.Add(i->Key); |
| 731 | } |
| 732 | |
| 733 | /// <summary> |
| 734 | /// Gets the values collection to the output array (may contain duplicates). |