construct iteration proxy from a container
| 3935 | public: |
| 3936 | /// construct iteration proxy from a container |
| 3937 | explicit iteration_proxy(typename IteratorType::reference cont) noexcept |
| 3938 | : container(cont) {} |
| 3939 | |
| 3940 | /// return iterator begin (needed for range-based for) |
| 3941 | iteration_proxy_value<IteratorType> begin() noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected