Function ieqBy

  • Test whether two iterables of arbitrary values are lexicographically equal.

    Type Parameters

    • T

    Parameters

    • lhs: Iterable<T>
    • rhs: Iterable<T>
    • eqBy: ((lhs, rhs) => boolean)
        • (lhs, rhs): boolean
        • Parameters

          • lhs: T
          • rhs: T

          Returns boolean

    Returns boolean

    Remarks

    If the iterables are the same length and their respective elements are determined to be equal by a provided function, the iterables are lexicographically equal.

Generated using TypeDoc