| 6449 | // General purpose iterator-based input |
| 6450 | template<typename IteratorType> |
| 6451 | typename iterator_input_adapter_factory<IteratorType>::adapter_type input_adapter(IteratorType first, IteratorType last) |
| 6452 | { |
| 6453 | using factory_type = iterator_input_adapter_factory<IteratorType>; |
| 6454 | return factory_type::create(first, last); |
| 6455 | } |
| 6456 | |
| 6457 | // Convenience shorthand from container to iterator |
| 6458 | // Enables ADL on begin(container) and end(container) |
no test coverage detected