• Returns three values (an iterator function, the table t, and 0) so that the construction

    for i,v in ipairs(t) do body end

    will iterate over the key–value pairs (1,t[1]), (2,t[2]), ..., up to the first nil value.

    Type Parameters

    • T

    Parameters

    • t: Record<number, T>

    Returns LuaIterable<LuaMultiReturn<[number, NonNullable<T>]>>

Generated using TypeDoc