| 5795 | // General purpose iterator-based input |
| 5796 | template<typename IteratorType> |
| 5797 | typename iterator_input_adapter_factory<IteratorType>::adapter_type input_adapter(IteratorType first, IteratorType last) |
| 5798 | { |
| 5799 | using factory_type = iterator_input_adapter_factory<IteratorType>; |
| 5800 | return factory_type::create(first, last); |
| 5801 | } |
| 5802 | |
| 5803 | // Convenience shorthand from container to iterator |
| 5804 | // Enables ADL on begin(container) and end(container) |
no test coverage detected