C# Class Bless.Util.Deque

Double-ended queue data structure
Inheritance: IEnumerable
Afficher le fichier Open project: bwrsandman/Bless-old-fork

Méthodes publiques

Méthode Description
AddEnd ( o ) : void
AddFront ( o ) : void

Add an object to the front of the queue

Clear ( ) : void
Deque ( ) : System
GetEnumerator ( ) : IEnumerator
PeekEnd ( ) : T

Peek the object at the end of the queue

PeekFront ( ) : T

Peek the object at the front of the queue

RemoveEnd ( ) : T

Remove an object from the end of the queue (FIFO)

RemoveFront ( ) : T

Remove an object from the front of the queue (LIFO)

Private Methods

Méthode Description
IEnumerable ( ) : IEnumerator

Method Details

AddEnd() public méthode

public AddEnd ( o ) : void
Résultat void

AddFront() public méthode

Add an object to the front of the queue
public AddFront ( o ) : void
Résultat void

Clear() public méthode

public Clear ( ) : void
Résultat void

Deque() public méthode

public Deque ( ) : System
Résultat System

GetEnumerator() public méthode

public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

PeekEnd() public méthode

Peek the object at the end of the queue
public PeekEnd ( ) : T
Résultat T

PeekFront() public méthode

Peek the object at the front of the queue
public PeekFront ( ) : T
Résultat T

RemoveEnd() public méthode

Remove an object from the end of the queue (FIFO)
public RemoveEnd ( ) : T
Résultat T

RemoveFront() public méthode

Remove an object from the front of the queue (LIFO)
public RemoveFront ( ) : T
Résultat T