Skip to content

Instantly share code, notes, and snippets.

@picanumber
Created January 11, 2017 12:05
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/ef3db1da8addfa2a2681a78381f29211 to your computer and use it in GitHub Desktop.
Save picanumber/ef3db1da8addfa2a2681a78381f29211 to your computer and use it in GitHub Desktop.
Accesing the elements of a sorted view
template <std::size_t I>
decltype(auto) at(std::size_t pos)
{
return std::get<I>(_ts)[_is[pos]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment