How do you declare a ranges-v3 view return value?
问题 Currently, I can compose ranges-v3 views like this: auto v = ranges::view::reverse | ranges::view::filter([](int l){return l>5;}); But if I wanted to return v from a function I'd need to know its type. What is the type of a ranges-v3 view? 回答1: Since C++14 you can use auto as the return type of functions and it will get deduced: auto f() { return ranges::view::reverse | ranges::view::filter([](int l){return l>5;}); } // f's return type is the type of the return expression, exactly as is I had