()
| 852 | |
| 853 | /** @internal */ |
| 854 | export const identity = <A>(): Schedule.Schedule<A, A> => |
| 855 | makeWithState(void 0, (now, input, state) => |
| 856 | core.succeed( |
| 857 | [ |
| 858 | state, |
| 859 | input, |
| 860 | ScheduleDecision.continueWith(Interval.after(now)) |
| 861 | ] as const |
| 862 | )) |
| 863 | |
| 864 | /** @internal */ |
| 865 | export const intersect = dual< |
no test coverage detected