ts-iterable-functions
    Preparing search index...

    Type Alias Iterablified<T>

    Iterablified: { [P in keyof T]: Iterable<T[P]> }

    Converts a readonly tuple type into a corresponding tuple of iterables, where each position exposes an iterable of the original element type.

    Type Parameters

    • T extends readonly unknown[]