Function hasSuffix

  • Check if iterable ends with a suffix.

    Type Parameters

    • T

    • U = T

    Parameters

    • x: Iterable<T>

      an iterable

    • y: Iterable<T>

      seach suffix

    • fc: CompareFunction<T | U> = null

      compare function (a, b)

    • fm: MapFunction<T, T | U> = null

      map function (v, i, x)

    Returns boolean

    x[|x|-|y|..] = y?

Generated using TypeDoc