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

    What are "iterable", "iterator", and "iteration" in Python? How are they defined? See also: How to build a basic iterator?

  2. Is it "iterate through" or "iterate over" something? [closed]

    19 I think it depends on the object of the preposition; you iterate over the iterator, over the collection, over the container, over the list, over the range, etc. but you iterate through (the contents of) the list, …

  3. What is the difference between iteration and traversing?

    Dec 12, 2013 · so by definition, traverse doesn't care how or what you're going through, ONLY that you cover the entire subject (but NOT necessarily every item in context). iterate repeats a process that …

  4. How do I iterate over a JsonObject with foreach in C#

    Dec 27, 2022 · How do I iterate over a JsonObject with foreach in C# Asked 2 years, 11 months ago Modified 2 years, 11 months ago Viewed 5k times

  5. Iterate enum in definition order in Python 2 - Stack Overflow

    Iterate enum in definition order in Python 2 Asked 11 years, 2 months ago Modified 3 years, 10 months ago Viewed 143k times

  6. iterator - What is the technical definition of a Javascript iterable ...

    Jan 10, 2017 · What is the real definition of a Javascript iterable using the term as the ES6 specification does? §25.1.1.1 defines "The Iterable Interface". They're objects with a Symbol.iterator -keyed …

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

    If you want to be able to iterate ctr more than once, it needs to be a non-iterator iterable, where it returns a brand new iterator each time __iter__ is invoked. Trying to mix and match (an iterator that is …

  8. c# - How to iterate over a dictionary? - Stack Overflow

    5 If say, you want to iterate over the values collection by default, I believe you can implement IEnumerable<>, Where T is the type of the values object in the dictionary, and "this" is a Dictionary.

  9. How to write C macro definition to iterate string and modify characters

    Feb 22, 2024 · How to write C macro definition to iterate string and modify characters Asked 1 year, 9 months ago Modified 1 year, 9 months ago Viewed 415 times

  10. Iterate over interface properties in TypeScript - Stack Overflow

    Aug 14, 2017 · Iterate over interface properties in TypeScript Asked 8 years, 4 months ago Modified 2 years, 7 months ago Viewed 158k times