Skip to content

Instantly share code, notes, and snippets.

@BogdanAriton
Created June 15, 2021 15:31
Show Gist options
  • Save BogdanAriton/f9cadf8eabf10418bcc24116c0055eb4 to your computer and use it in GitHub Desktop.
Save BogdanAriton/f9cadf8eabf10418bcc24116c0055eb4 to your computer and use it in GitHub Desktop.
// returning a const pointer to the back - the back is always null because it marks the end of the list
Iterator end() const noexcept
{
return Iterator(); // this just return a nullptr that represents the end
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment