(label?: string)
| 174 | * yield* Console.log("This appears after clearing") |
| 175 | * }) |
| 176 | * |
| 177 | * Effect.runSync(Effect.provideService(program, Console.Console, testConsole)) |
| 178 | * operations // => ["log:This will be cleared", "clear", "log:This appears after clearing"] |
| 179 | * ``` |
| 180 | * |
| 181 | * @category accessors |
| 182 | * @since 2.0.0 |
| 183 | */ |
| 184 | export const clear: Effect.Effect<void> = consoleWith((console) => |
no test coverage detected
searching dependent graphs…