return iterator end (needed for range-based for)
| 3401 | |
| 3402 | /// return iterator end (needed for range-based for) |
| 3403 | iteration_proxy_value<IteratorType> end() noexcept |
| 3404 | { |
| 3405 | return iteration_proxy_value<IteratorType>(container.end()); |
| 3406 | } |
| 3407 | }; |
| 3408 | // Structured Bindings Support |
| 3409 | // For further reference see https://blog.tartanllama.xyz/structured-bindings/ |
no outgoing calls
no test coverage detected