Skip to content

Instantly share code, notes, and snippets.

@picanumber
Created January 11, 2017 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save picanumber/5fac3c2e48194e1ba34aa4528fa76459 to your computer and use it in GitHub Desktop.
Save picanumber/5fac3c2e48194e1ba34aa4528fa76459 to your computer and use it in GitHub Desktop.
creates a sorted view
template <class... Args>
auto make_sorted_view(Args&&... args)
{
return sorted_view<Args...>(std::forward<Args>(args)...);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment