About 12,600 results
Open links in new tab
  1. Iterator - Wikipedia

    Iterators generalize pointers to elements of an array (which indeed can be used as iterators), and their syntax is designed to …

  2. Iterators in Python - GeeksforGeeks

    Jun 5, 2026 · Built-in Iterator Python provides built-in iterators for iterable objects such as strings, lists, tuples, and dictionaries. …

  3. Introduction to Iterators in C++ - GeeksforGeeks

    Jun 27, 2026 · Your All-in-One Learning Portal: GeeksforGeeks is a comprehensive educational platform that empowers learners …

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

  5. Iterator library - cppreference.com

    Iterators are a generalization of pointers that allow a C++ program to work with different data structures (for example, containers and …

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

  7. Iterators - C# | Microsoft Learn

    Nov 10, 2021 · Learn how to use built-in C# iterators and how to create your own custom iterator methods.

  8. itertools — Functions creating iterators for efficient looping

    1 day ago · itertools — Functions creating iterators for efficient looping ¶ This module implements a number of iterator building blocks …

  9. Iterator (Java Platform SE 8 ) - Oracle

    Iterator takes the place of Enumeration in the Java Collections Framework. Iterators differ from enumerations in two ways: Iterators …

  10. std::iterator - cppreference.com

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