()
| 1417 | |
| 1418 | /* @internal */ |
| 1419 | export const gen: typeof Effect.gen = function() { |
| 1420 | const f = arguments.length === 1 ? arguments[0] : arguments[1].bind(arguments[0]) |
| 1421 | return fromIterator(() => f(pipe)) |
| 1422 | } |
| 1423 | |
| 1424 | /** @internal */ |
| 1425 | export const fnUntraced: Effect.fn.Untraced = (body: Function, ...pipeables: Array<any>) => |
nothing calls this directly
no test coverage detected