@szilanor/stream
    Preparing search index...

    Variable dropAsyncConst

    dropAsync: <T>(count: number) => AsyncOperationFunction<T, T> = skipAsync

    Type Declaration

      • <T>(count: number): AsyncOperationFunction<T, T>
      • Returns an AsyncOperationFunction that skips the given amount of entries of the source Iterable.

        Type Parameters

        • T

          The type of the elements in the source Iterable.

        Parameters

        • count: number

          The amount of entries to skip.

        Returns AsyncOperationFunction<T, T>

        An AsyncOperationFunction that skips the given amount of entries of the source Iterable.

        const result = skipAsync<number>([1, 2, 3], 2);
        console.log(result); // [3]