delay<L, R> function
Pause execution of the task by the given Duration.
Implementation
TaskEither<L, R> Function(TaskEither<L, R>) delay<L, R>(Duration d) =>
(fa) => TaskEither(fa.p(task.delay(d)));
Pause execution of the task by the given Duration.
TaskEither<L, R> Function(TaskEither<L, R>) delay<L, R>(Duration d) =>
(fa) => TaskEither(fa.p(task.delay(d)));