| 5086 | // General purpose iterator-based input |
| 5087 | template<typename IteratorType> |
| 5088 | typename iterator_input_adapter_factory<IteratorType>::adapter_type input_adapter(IteratorType first, IteratorType last) |
| 5089 | { |
| 5090 | using factory_type = iterator_input_adapter_factory<IteratorType>; |
| 5091 | return factory_type::create(first, last); |
| 5092 | } |
| 5093 | |
| 5094 | // Convenience shorthand from container to iterator |
| 5095 | template<typename ContainerType> |
no test coverage detected