return iterator end (needed for range-based for)
| 5259 | |
| 5260 | /// return iterator end (needed for range-based for) |
| 5261 | iteration_proxy_value<IteratorType> end() const noexcept |
| 5262 | { |
| 5263 | return iteration_proxy_value<IteratorType>(container->end()); |
| 5264 | } |
| 5265 | }; |
| 5266 | |
| 5267 | // Structured Bindings Support |
no outgoing calls
no test coverage detected