| 420 | |
| 421 | template <typename NullaryFunction> |
| 422 | FunctionInputIterator<NullaryFunction> makeFunctionInputIterator(NullaryFunction f) { |
| 423 | return FunctionInputIterator<NullaryFunction>(std::move(f)); |
| 424 | } |
| 425 | |
| 426 | template <typename Iterable> |
| 427 | struct ReverseWrapper { |