@internal
| 85 | |
| 86 | /** @internal */ |
| 87 | class ScheduleImpl<S, Out, In, R> implements Schedule.Schedule<Out, In, R> { |
| 88 | [ScheduleTypeId] = scheduleVariance |
| 89 | constructor( |
| 90 | readonly initial: S, |
| 91 | readonly step: ( |
| 92 | now: number, |
| 93 | input: In, |
| 94 | state: S |
| 95 | ) => Effect.Effect<readonly [S, Out, ScheduleDecision.ScheduleDecision], never, R> |
| 96 | ) { |
| 97 | } |
| 98 | pipe() { |
| 99 | return pipeArguments(this, arguments) |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | /** @internal */ |
| 104 | const updateInfo = ( |
nothing calls this directly
no outgoing calls
no test coverage detected