* Sets the current clock time to the specified instant. Any effects that * were scheduled to occur on or before the new time will be run in order.
(instant: number)
| 183 | * were scheduled to occur on or before the new time will be run in order. |
| 184 | */ |
| 185 | setTime(instant: number): Effect.Effect<void> { |
| 186 | return core.zipRight(this.warningDone(), this.run(() => instant)) |
| 187 | } |
| 188 | /** |
| 189 | * Semantically blocks the current fiber until the clock time is equal to or |
| 190 | * greater than the specified duration. Once the clock time is adjusted to |
nothing calls this directly
no test coverage detected