Skip to content

Instantly share code, notes, and snippets.

@erikvalkering
Last active May 11, 2018 23:39
Show Gist options
  • Save erikvalkering/942859199037c50d38dc46089a32808c to your computer and use it in GitHub Desktop.
Save erikvalkering/942859199037c50d38dc46089a32808c to your computer and use it in GitHub Desktop.
template<typename T>
class Proxy
{
// ... as before
auto begin()
{
return static_cast<T &>(*this).begin();
}
auto end()
{
return static_cast<T &>(*this).end();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment