C# Класс Bless.Util.Deque

Double-ended queue data structure
Наследование: IEnumerable
Показать файл Открыть проект

Открытые методы

Метод Описание
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)

Приватные методы

Метод Описание
IEnumerable ( ) : IEnumerator

Описание методов

AddEnd() публичный Метод

public AddEnd ( o ) : void
Результат void

AddFront() публичный Метод

Add an object to the front of the queue
public AddFront ( o ) : void
Результат void

Clear() публичный Метод

public Clear ( ) : void
Результат void

Deque() публичный Метод

public Deque ( ) : System
Результат System

GetEnumerator() публичный Метод

public GetEnumerator ( ) : IEnumerator
Результат IEnumerator

PeekEnd() публичный Метод

Peek the object at the end of the queue
public PeekEnd ( ) : T
Результат T

PeekFront() публичный Метод

Peek the object at the front of the queue
public PeekFront ( ) : T
Результат T

RemoveEnd() публичный Метод

Remove an object from the end of the queue (FIFO)
public RemoveEnd ( ) : T
Результат T

RemoveFront() публичный Метод

Remove an object from the front of the queue (LIFO)
public RemoveFront ( ) : T
Результат T