Skip to content

Instantly share code, notes, and snippets.

@JohanMabille
Created January 6, 2020 16:53
Show Gist options
  • Save JohanMabille/841bd7044b34463925ddb12202bd7400 to your computer and use it in GitHub Desktop.
Save JohanMabille/841bd7044b34463925ddb12202bd7400 to your computer and use it in GitHub Desktop.
template <class St, class S, layout_type L>
inline auto xiterator<St, S, L>::operator*() const -> reference
{
return *m_st;
}
template <class St, class S, layout_type L>
inline auto xiterator<St, S, L>::operator->() const -> pointer
{
return &(*m_st);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment