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