( self: Args.Args<A>, f: (value: A) => Effect.Effect<B, HelpDoc.HelpDoc, FileSystem.FileSystem | Path.Path | Terminal.Terminal> )
| 688 | } |
| 689 | |
| 690 | const makeMap = <A, B>( |
| 691 | self: Args.Args<A>, |
| 692 | f: (value: A) => Effect.Effect<B, HelpDoc.HelpDoc, FileSystem.FileSystem | Path.Path | Terminal.Terminal> |
| 693 | ): Args.Args<B> => { |
| 694 | const op = Object.create(proto) |
| 695 | op._tag = "Map" |
| 696 | op.args = self |
| 697 | op.f = f |
| 698 | return op |
| 699 | } |
| 700 | |
| 701 | const makeBoth = <A, B>(left: Args.Args<A>, right: Args.Args<B>): Args.Args<[A, B]> => { |
| 702 | const op = Object.create(proto) |
no test coverage detected
searching dependent graphs…