Package: effect
Module: Deferred
Returns whether this Deferred has already been completed synchronously.
When to use
Use to check Deferred completion synchronously in code that cannot return
an Effect, such as low-level integration code.
See
isDone for checking completion inside Effectpoll for reading the completed effect when availableSignature
declare const isDoneUnsafe: <A, E>(self: Deferred<A, E>) => boolean
Since v4.0.0