Return the first element that satisfies the given predicate.
(pred: ArrayFunc<T, boolean>)
| 52 | indexOf(element: T, fromIndex?: number): number; |
| 53 | /** Return the first element that satisfies the given predicate. */ |
| 54 | find(pred: ArrayFunc<T, boolean>): T | undefined; |
| 55 | /** Find the index of the first element that satisfies the given predicate. Returns -1 if nothing was found. */ |
| 56 | findIndex(pred: ArrayFunc<T, boolean>, fromIndex?: number): number; |
| 57 | /** Returns true if the array contains the given element, and false otherwise. */ |
no outgoing calls
no test coverage detected