Bluestep JS Documentation
    Preparing search index...

    Interface Iterable<T>

    interface Iterable<T> {
        forEach(action: Consumer<T>): void;
        iterator(): Iterator<T>;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Methods

    • Parameters

      Returns void

    • Returns Iterator<T>