• Determines whether two sequences are equal by comparing the elements pairwise.

    Type Parameters

    • T

      The type of the elements in the source sequence.

    Parameters

    • source: AsyncIterable<T>

      First async-iterable sequence to compare.

    • other: AsyncIterable<T>

      Second async-iterable sequence to compare.

    • Optional options: SequencEqualOptions<T>

      The sequence equal options which include an optional comparer and optional abort signal.

    Returns Promise<boolean>

    A promise which indicates whether both sequences are of equal length and their corresponding elements are equal.

Generated using TypeDoc