IQueue<TValue, TCont> Interface

 

Defines the interface for an STL/CLR queue object.

Namespace:   Microsoft.VisualC.StlClr
Assembly:  Microsoft.VisualC.STLCLR (in Microsoft.VisualC.STLCLR.dll)

generic<typename TValue, typename TCont>
public interface class IQueue : ICloneable

Type Parameters

TValue

The type of an element in the controlled sequence.

TCont

The type of the underlying container.

NameDescription
System_CAPS_pubmethodassign(IQueue<TValue, TCont>^)

Replaces all elements of the container with the contents of the provided container.

System_CAPS_pubmethodback()

Accesses the last element of the container.

System_CAPS_pubmethodClone()

Creates a new object that is a copy of the current instance.(Inherited from ICloneable.)

System_CAPS_pubmethodempty()

Determines whether the container contains no elements.

System_CAPS_pubmethodfront()

Accesses the first element of the container.

System_CAPS_pubmethodget_container()

Accesses the underlying container.

System_CAPS_pubmethodpop()

Removes the last element of the container.

System_CAPS_pubmethodpush(TValue)

Adds an element to the beginning of the container.

System_CAPS_pubmethodsize()

Counts the number of elements in the container.

.NET Framework
Available since 3.5
Return to top
Show: