YamlDotNet.Core : YamlDotNet.Core Namespace

InsertionQueue<T> Generic Class

Generic queue on which items may be inserted

public class InsertionQueue<T>

Type Parameters

T
Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: YamlDotNet.Core
Assembly: YamlDotNet.Core (in YamlDotNet.Core.dll)
Assembly Versions: 0.2.3385.42326

Members

See Also: Inherited members from object.

Public Constructors

Documentation for this section has not yet been entered.

Public Properties

[read-only]
Count int . Gets the number of items that are contained by the queue.

Public Methods

Dequeue () : T
Dequeues an item.
Enqueue (T)
Enqueues the specified item.
Insert (int, T)
Inserts an item at the specified index.

Member Details

InsertionQueue Constructor

Documentation for this section has not yet been entered.

public InsertionQueue ()

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: YamlDotNet.Core
Assembly: YamlDotNet.Core (in YamlDotNet.Core.dll)
Assembly Versions: 0.2.3385.42326

Count Property

Gets the number of items that are contained by the queue.

public int Count { get; }

Value

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: YamlDotNet.Core
Assembly: YamlDotNet.Core (in YamlDotNet.Core.dll)
Assembly Versions: 0.2.3385.42326

Dequeue Method

Dequeues an item.

public T Dequeue ()

Returns

Returns the item that been dequeued.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: YamlDotNet.Core
Assembly: YamlDotNet.Core (in YamlDotNet.Core.dll)
Assembly Versions: 0.2.3385.42326

Enqueue Method

Enqueues the specified item.

public void Enqueue (T item)

Parameters

item
The item to be enqueued.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: YamlDotNet.Core
Assembly: YamlDotNet.Core (in YamlDotNet.Core.dll)
Assembly Versions: 0.2.3385.42326

Insert Method

Inserts an item at the specified index.

public void Insert (int index, T item)

Parameters

index
The index where to insert the item.
item
The item to be inserted.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: YamlDotNet.Core
Assembly: YamlDotNet.Core (in YamlDotNet.Core.dll)
Assembly Versions: 0.2.3385.42326