| 5154 | // General purpose iterator-based input |
| 5155 | template<typename IteratorType> |
| 5156 | typename iterator_input_adapter_factory<IteratorType>::adapter_type input_adapter(IteratorType first, IteratorType last) |
| 5157 | { |
| 5158 | using factory_type = iterator_input_adapter_factory<IteratorType>; |
| 5159 | return factory_type::create(first, last); |
| 5160 | } |
| 5161 | |
| 5162 | // Convenience shorthand from container to iterator |
| 5163 | template<typename ContainerType> |
no test coverage detected