| 397 | // Allocate container and copy view's content into it |
| 398 | template <template <class...> class TContainer = TMap> |
| 399 | TContainer<TEnumType, TValueType> Materialize() const { |
| 400 | return {begin(), end()}; |
| 401 | } |
| 402 | |
| 403 | private: |
| 404 | const TStorage& Ref; |
no test coverage detected