( combiner: Combiner.Combiner<A> )
| 1502 | * @since 3.14.0 |
| 1503 | */ |
| 1504 | export const findFirst: { |
| 1505 | <K extends string | symbol, V, V2 extends V>( |
| 1506 | refinement: (value: NoInfer<V>, key: NoInfer<K>) => value is V2 |
| 1507 | ): (self: ReadonlyRecord<K, V>) => Option.Option<[K, V2]> |
| 1508 | <K extends string | symbol, V>( |
| 1509 | predicate: (value: NoInfer<V>, key: NoInfer<K>) => boolean |
| 1510 | ): (self: ReadonlyRecord<K, V>) => Option.Option<[K, V]> |
| 1511 | <K extends string | symbol, V, V2 extends V>( |
| 1512 | self: ReadonlyRecord<K, V>, |
| 1513 | refinement: (value: NoInfer<V>, key: NoInfer<K>) => value is V2 |
| 1514 | ): Option.Option<[K, V2]> |
nothing calls this directly
no test coverage detected
searching dependent graphs…