UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

12 lines (8 loc) 227 B
// ets_tracing: off import "../../Operator/index.js" import { AtomicReference } from "../AtomicReference/index.js" export class AtomicBoolean extends AtomicReference<boolean> { constructor(b: boolean) { super(b) } }