Interface IKavenStack<T>

Type Parameters

  • T

Hierarchy

  • IKavenStack

Implemented by

Properties

Methods

Properties

Count: number

Gets the number of elements contained in the stack.

Methods

  • Removes all objects from the stack.

    Returns void

  • Determines whether an element is in the stack.

    Returns

    true if item is found in the stack; otherwise, false.

    Parameters

    • item: T

    Returns boolean

  • Returns the object at the top of the stack without removing it.

    Returns

    The object at the top of the stack.

    Returns undefined | T

  • Removes and returns the object at the top of the stack.

    Returns

    The object removed from the top of the stack.

    Returns undefined | T

  • Inserts an object at the top of the stack.

    Parameters

    • item: T

    Returns void

  • Copies the stack to a new array.

    Returns

    A new array containing copies of the elements of the stack.

    Returns T[]

Generated using TypeDoc