About 60,600 results
Open links in new tab
  1. Iterator (Java Platform SE 8 ) - Oracle

    An iterator over a collection. Iterator takes the place of Enumeration in the Java Collections Framework. Iterators differ from …

  2. Iterator in Java - GeeksforGeeks

    Mar 11, 2026 · An Iterator in Java is one of the most commonly used cursors in the Java Collections Framework. It is used to …

  3. Iterator - Wikipedia

    In computer programming, an iterator is an object that progressively provides access to each item of a collection, in order. [1][2][3] A …

  4. Java Iterator - W3Schools

    Java Iterator An Iterator is an object that can be used to loop through collections, like ArrayList and HashSet. It is called an "iterator" …

  5. std::iterator - cppreference.com

    std::iterator is the base class provided to simplify definitions of the required types for iterators.

  6. Iterators and generators - JavaScript - MDN

    Jul 29, 2025 · Iterators In JavaScript an iterator is an object which defines a sequence and potentially a return value upon its …

  7. Iterator - refactoring.guru

    Iterator is a behavioral design pattern that lets you traverse elements of a collection without exposing its underlying representation …

  8. Functions creating iterators for efficient looping - Python

    2 days ago · This module implements a number of iterator building blocks inspired by constructs from APL, Haskell, and SML. Each …

  9. Iterators and Iterables in Python: Run Efficient Iterations

    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. …

  10. Java - How to Use Iterator? - Online Tutorials Library

    Using the Iterator Interface In general, to use an iterator to cycle through the contents of a collection, first import the java.util.Iterator …