@designliquido/delegua
    Preparing search index...

    Interface PilhaInterface<T>

    interface PilhaInterface<T> {
        pilha: T[];
        empilhar(item: T): void;
        eVazio(): boolean;
        removerUltimo(): T;
        topoDaPilha(): T;
    }

    Type Parameters

    • T

    Implemented by

    Index

    Properties

    pilha: T[]

    Methods