A Stack with synchronous operations.

interface SyncStack {
    back?(): undefined | T;
    pop(): undefined | T;
    push(item): void;
}

Type Parameters

  • T

Hierarchy

Methods

Methods

Generated using TypeDoc