(
schedule: Schedule.Schedule<Out, In, Env>,
inputs: Iterable<
readonly [
number,
In
]
>
)
| 936 | ) |
| 937 | } |
| 938 | const runManually = <Env, In, Out>( |
| 939 | schedule: Schedule.Schedule<Out, In, Env>, |
| 940 | inputs: Iterable< |
| 941 | readonly [ |
| 942 | number, |
| 943 | In |
| 944 | ] |
| 945 | > |
| 946 | ): Effect.Effect< |
| 947 | readonly [ |
| 948 | Chunk.Chunk< |
| 949 | readonly [ |
| 950 | number, |
| 951 | Out |
| 952 | ] |
| 953 | >, |
| 954 | Option.Option<Out> |
| 955 | ], |
| 956 | never, |
| 957 | Env |
| 958 | > => { |
| 959 | return runManuallyLoop(schedule, schedule.initial, Chunk.fromIterable(inputs), Chunk.empty()) |
| 960 | } |
| 961 | const runManuallyLoop = <Env, In, Out>( |
| 962 | schedule: Schedule.Schedule<Out, In, Env>, |
| 963 | state: unknown, |
no test coverage detected