diff --git a/view.hpp b/view.hpp index a9d28b23..4bfb1fd7 100644 --- a/view.hpp +++ b/view.hpp @@ -79,6 +79,13 @@ namespace util { auto make_cview (const T&); + template + auto + make_view (T first, T last) + { + return view {first, last}; + } + template bool operator!= (view, view);