| 6488 | using adapter_type = iterator_input_adapter<iterator_type>; |
| 6489 | |
| 6490 | static adapter_type create(IteratorType first, IteratorType last) |
| 6491 | { |
| 6492 | return adapter_type(std::move(first), std::move(last)); |
| 6493 | } |
| 6494 | }; |
| 6495 | |
| 6496 | template<typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected