( self: RequestBlock.RequestBlock, f: (dataSource: RequestResolver.RequestResolver<A>) => RequestResolver.RequestResolver<A> )
| 89 | * @internal |
| 90 | */ |
| 91 | export const mapRequestResolvers = <A>( |
| 92 | self: RequestBlock.RequestBlock, |
| 93 | f: (dataSource: RequestResolver.RequestResolver<A>) => RequestResolver.RequestResolver<A> |
| 94 | ): RequestBlock.RequestBlock => reduce(self, MapRequestResolversReducer(f)) |
| 95 | |
| 96 | /** |
| 97 | * Folds over the cases of this collection of blocked requests with the |
nothing calls this directly
no test coverage detected