export function padLast<T>(
    n: number,
    fill: T,
    src: Iterable<T>
): IterableIterator<T>;