return iterator end (needed for range-based for)
| 5330 | |
| 5331 | /// return iterator end (needed for range-based for) |
| 5332 | iteration_proxy_value<IteratorType> end() const noexcept |
| 5333 | { |
| 5334 | return iteration_proxy_value<IteratorType>(container->end()); |
| 5335 | } |
| 5336 | }; |
| 5337 | |
| 5338 | // Structured Bindings Support |
no outgoing calls
no test coverage detected