• This method is like _.find except that it iterates over elements of a collection from right to left.

    Type Parameters

    • T

    • S

    Parameters

    • collection: undefined | null | List<T>

      Searches for a value in this list.

    • predicate: ListIteratorTypeGuard<T, S>

      The function called per iteration.

    • Optional fromIndex: number

      The index to search from.

    Returns undefined | S

    The found element, else undefined.

  • Type Parameters

    • T

    Parameters

    • collection: undefined | null | List<T>
    • Optional predicate: ListIterateeCustom<T, boolean>
    • Optional fromIndex: number

    Returns undefined | T

    See

    _.findLast

  • Type Parameters

    • T extends object

    • S

    Parameters

    • collection: undefined | null | T
    • predicate: ObjectIteratorTypeGuard<T, S>
    • Optional fromIndex: number

    Returns undefined | S

    See

    _.findLast

  • Type Parameters

    • T extends object

    Parameters

    • collection: undefined | null | T
    • Optional predicate: ObjectIterateeCustom<T, boolean>
    • Optional fromIndex: number

    Returns undefined | T[keyof T]

    See

    _.findLast

Generated using TypeDoc