Package: effect
Module: Schedule
Creates a schedule that always recurs, passing inputs directly as outputs.
Details
This schedule runs indefinitely, returning each input value as its output without modification. It effectively acts as a pass-through that simply echoes its input values at each step.
Signature
declare const identity: <A>() => Schedule<A, A>
Since v2.0.0