About 17,500,000 results
Open links in new tab
  1. What are iterator, iterable, and iteration? - Stack Overflow

    Iterator: Iterator are the object which call next method and transverse through the sequence. On calling the next method it returns the object that it traversed currently.

  2. java - What is the difference between iterator and iterable and …

    Jul 28, 2011 · Iterator is class that manages iteration over an Iterable. It maintains a state of where we are in the current iteration, and knows what the next element is and how to get it.

  3. How does next() method on iterators work? - Stack Overflow

    Dec 6, 2017 · At the very first iteration, the iterator starts pointing to element with index 0? or like the "index -1" ? I ask because as far as I know the next() method returns the next element in …

  4. How to correctly implement custom iterators and const_iterators?

    Aug 27, 2010 · Choose type of iterator which fits your container: input, output, forward etc. Use base iterator classes from standard library. For example, std::iterator with …

  5. Which is more efficient, a for-each loop, or an iterator?

    Iterator is an interface in the Java Collections framework that provides methods to traverse or iterate over a collection. Both iterator and for loop acts similar when your motive is to just …

  6. Difference between Python's Generators and Iterators

    What is the difference between iterators and generators? Some examples for when you would use each case would be helpful.

  7. python - How to build a basic iterator? - Stack Overflow

    Iterator objects in python conform to the iterator protocol, which basically means they provide two methods: __iter__() and __next__(). The __iter__ returns the iterator object and is implicitly …

  8. Iterating C++ vector from the end to the beginning

    Now, in theory, your method (using begin() / end() & --i) would work, std::vector 's iterator being bidirectional, but remember, end() isn't the last element — it's one beyond the last element, so …

  9. How to navigate through a vector using iterators? (C++)

    The goal is to access the "nth" element of a vector of strings instead of the [] operator or the "at" method. From what I understand, iterators can be used to navigate through containers, but I've ...

  10. Iterate through a C++ Vector using a 'for' loop - Stack Overflow

    Oct 3, 2012 · I am new to the C++ language. I have been starting to use vectors, and have noticed that in all of the code I see to iterate though a vector via indices, the first parameter of …