| 5054 | using adapter_type = iterator_input_adapter<iterator_type>; |
| 5055 | |
| 5056 | static adapter_type create(IteratorType first, IteratorType last) |
| 5057 | { |
| 5058 | return adapter_type(std::move(first), std::move(last)); |
| 5059 | } |
| 5060 | }; |
| 5061 | |
| 5062 | template<typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected