About 223,000 results
Open links in new tab
  1. Iterator in Java - GeeksforGeeks

    Nov 22, 2025 · An Iterator in Java is one of the most commonly used cursors in the Java Collections Framework. It is used to traverse or iterate through elements of a collection one by …

  2. Iterator - Wikipedia

    Most iterators are naturally expressible as generators, but because generators preserve their local state between invocations, they're particularly well-suited for complicated, stateful iterators, …

  3. Define iteration paths (sprints) and configure team iterations

    Define iteration paths at the project level and have each team select the paths they use. Iteration paths are shared among all selected teams. You can create a flat or hierarchical structure of …

  4. Iterator (Java Platform SE 8 ) - Oracle

    Performs the given action for each remaining element until all elements have been processed or the action throws an exception. Actions are performed in the order of iteration, if that order is …

  5. Python Iterators - W3Schools

    An iterator is an object that can be iterated upon, meaning that you can traverse through all the values. Technically, in Python, an iterator is an object which implements the iterator protocol, …

  6. A Guide to Iterator in Java - Baeldung

    Jun 27, 2025 · In this tutorial, we’re going to review the simple Iterator interface to learn how we can use its different methods. We’ll also check the more robust ListIterator extension which …

  7. Python Pathlib iterdir () Explained - PyTutorial

    Mar 19, 2025 · The iterdir () method in Python's Pathlib module is a powerful tool for listing the contents of a directory. It returns an iterator of all files and subdirectories in the specified path. …

  8. Iterators and Iterables in Python: Run Efficient Iterations

    Jan 6, 2025 · In this tutorial, you'll learn what iterators and iterables are in Python. You'll learn how they differ and when to use them in your code. You'll also learn how to create your own …

  9. Iterators in Python - GeeksforGeeks

    Sep 3, 2025 · Although the terms iterator and iterable sound similar, they are not the same. An iterable is any object that can return an iterator, while an iterator is the actual object that …

  10. Iterator - JavaScript | MDN - MDN Web Docs

    Jul 29, 2025 · The Iterator class provides a [Symbol.iterator]() method that returns the iterator object itself, making the iterator also iterable. It also provides some helper methods for working …