Last active
April 27, 2018 13:07
-
-
Save deque-blog/9e11bb694af4bce756b702ffc7e99dc8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct LinkedListIterator | |
{ | |
using iterator_category = std::bidirectional_iterator_tag; | |
}; | |
struct VectorIterator | |
{ | |
using iterator_category = std::random_access_iterator_tag; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment