return iterator end (needed for range-based for)
| 4012 | |
| 4013 | /// return iterator end (needed for range-based for) |
| 4014 | iteration_proxy_value<IteratorType> end() noexcept |
| 4015 | { |
| 4016 | return iteration_proxy_value<IteratorType>(container.end()); |
| 4017 | } |
| 4018 | }; |
| 4019 | // Structured Bindings Support |
| 4020 | // For further reference see https://blog.tartanllama.xyz/structured-bindings/ |
no outgoing calls