UNPKG

@effect-ts/system

Version:

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

6 lines (4 loc) 113 B
// ets_tracing: off export class Stack<A> { constructor(readonly value: A, readonly previous?: Stack<A>) {} }