class Lifo::Stack(T)

Defined in:

lifo/stack.cr

Constructors

Instance Method Summary

Instance methods inherited from class Lifo::LifoLike(T)

capacity capacity, empty? : Bool empty?, size : Int32 size, to_a : Array(T) to_a

Constructor methods inherited from class Lifo::LifoLike(T)

new(capacity : Int32 = -1) new

Constructor Detail

def self.new(capacity = -1) #

[View source]

Instance Method Detail

def peek : T #

[View source]
def peek? : T | Nil #

[View source]
def pop : T #

[View source]
def pop? : T | Nil #

[View source]
def push(e : T) : Int32 #

[View source]
def push?(e : T) : Int32 | Nil #

[View source]