(self: Schedule.Schedule<Out, In, R>)
| 1285 | |
| 1286 | /** @internal */ |
| 1287 | export const repetitions = <Out, In, R>(self: Schedule.Schedule<Out, In, R>): Schedule.Schedule<number, In, R> => |
| 1288 | reduce(self, 0, (n, _) => n + 1) |
| 1289 | |
| 1290 | /** @internal */ |
| 1291 | export const resetAfter = dual< |