Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IIterable<T>

An object which can produce an iterator over its values.

Type parameters

  • T

Hierarchy

Index

Methods

Methods

iter

  • Get an iterator over the object's values.

    Returns IIterator<T>

    An iterator which yields the object's values.

    Notes

    Depending on the iterable, the returned iterator may or may not be a new object. A collection or other container-like object should typically return a new iterator, while an iterator itself should normally return this.

Generated using TypeDoc