About 73,300 results
Open links in new tab
  1. 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 …

  2. Iterator - Wikipedia

    Internal iterator An internal iterator is a higher-order function (often taking anonymous functions) that traverses a collection while …

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

  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. Iterator (Java SE 11 & JDK 11 ) - Oracle

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

  6. std::iterator - cppreference.com

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

  7. Python Iterators - W3Schools

    Python Iterators An iterator is an object that contains a countable number of values. An iterator is an object that can be iterated upon, …

  8. Introduction to Iterators in C++ - GeeksforGeeks

    Jan 20, 2026 · An iterator is an object like a pointer that points to an element inside the container. We can use iterators to move …

  9. Iterator - refactoring.guru

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

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