| 6417 | using adapter_type = iterator_input_adapter<iterator_type>; |
| 6418 | |
| 6419 | static adapter_type create(IteratorType first, IteratorType last) |
| 6420 | { |
| 6421 | return adapter_type(std::move(first), std::move(last)); |
| 6422 | } |
| 6423 | }; |
| 6424 | |
| 6425 | template<typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected