MCPcopy Create free account
hub / github.com/effect-app/libs / makeReducerIntersection

Function makeReducerIntersection

repos/effect/packages/effect/src/Record.ts:1504–1511  ·  view source on GitHub ↗
(
  combiner: Combiner.Combiner<A>
)

Source from the content-addressed store, hash-verified

1502 * @since 3.14.0
1503 */
1504export 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]>

Callers

nothing calls this directly

Calls 2

makeMethod · 0.65
intersectionFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…