| 6519 | // General purpose iterator-based input |
| 6520 | template<typename IteratorType> |
| 6521 | typename iterator_input_adapter_factory<IteratorType>::adapter_type input_adapter(IteratorType first, IteratorType last) |
| 6522 | { |
| 6523 | using factory_type = iterator_input_adapter_factory<IteratorType>; |
| 6524 | return factory_type::create(first, last); |
| 6525 | } |
| 6526 | |
| 6527 | // Convenience shorthand from container to iterator |
| 6528 | // Enables ADL on begin(container) and end(container) |
no test coverage detected