IDeque<TValue> Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the interface of an STL/CLR deque
object.
generic <typename TValue>
public interface class IDeque : ICloneable, Microsoft::VisualC::StlClr::Generic::IRandomAccessContainer<TValue>, System::Collections::ICollection
public interface IDeque<TValue> : ICloneable, Microsoft.VisualC.StlClr.Generic.IRandomAccessContainer<TValue>, System.Collections.ICollection
type IDeque<'Value> = interface
interface IRandomAccessContainer<'Value>
interface ICloneable
interface ICollection
interface IEnumerable
Public Interface IDeque(Of TValue)
Implements ICloneable, ICollection, IRandomAccessContainer(Of TValue)
Type Parameters
- TValue
The type that is contained.
- Implements
Remarks
Some methods, especially operators, declare a type for a parameter but do not specify a parameter name. Such a parameter is known as an unnamed parameter. In the documentation for these methods, the A_0 placeholder represents the unnamed parameter.
For more information, see deque (STL/CLR).
Properties
back_item |
Accesses the last element of a non-empty |
Count |
Gets the number of elements contained in the ICollection. (Inherited from ICollection) |
front_item |
Accesses the first element of a non-empty |
IsSynchronized |
Gets a value indicating whether access to the ICollection is synchronized (thread safe). (Inherited from ICollection) |
Item[Int32] |
Gets or sets the element at the indicated position in the container. |
SyncRoot |
Gets an object that can be used to synchronize access to the ICollection. (Inherited from ICollection) |
Methods
assign(IEnumerable) |
Replaces all elements of the container with the elements in the given IEnumerable object. |
assign(IInputIterator<TValue>, IInputIterator<TValue>) |
Replaces all elements of the container with the elements specified by the given IInputIterator<TValue> objects. |
assign(Int32, TValue) |
Replaces all elements of the container with the given number of specified elements. |
at_bias(Int32) |
Gets the element at the current bias of the container. The bias is the offset from the current element zero. (Inherited from IRandomAccessContainer<TValue>) |
at(Int32) |
Accesses an element at a specified position in the container. |
back() |
Accesses the last element of the container. |
begin_bias() |
Gets the bias of the beginning of the current sequence. The bias is the offset of the current element zero. |
begin(ContainerRandomAccessIterator<TValue>) |
Designates the beginning of the controlled sequence. |
clear() |
Removes all elements in the container. |
Clone() |
Creates a new object that is a copy of the current instance. (Inherited from ICloneable) |
CopyTo(Array, Int32) |
Copies the elements of the ICollection to an Array, starting at a particular Array index. (Inherited from ICollection) |
empty() |
Tests whether the container holds no elements. |
end_bias() |
Gets the bias of the end of the current sequence. The bias is the offset of the current element zero. |
end(ContainerRandomAccessIterator<TValue>) |
Designates the end of the controlled sequence. |
erase(ContainerRandomAccessIterator<TValue>, ContainerRandomAccessIterator<TValue>, ContainerRandomAccessIterator<TValue>) |
Removes the elements between the specified iterators. |
erase(ContainerRandomAccessIterator<TValue>, ContainerRandomAccessIterator<TValue>) |
Removes the element at the specified position. |
front() |
Accesses the first element of the container. |
get_generation() |
Gets the current change generation of the underlying container. |
GetEnumerator() |
Returns an enumerator that iterates through a collection. (Inherited from IEnumerable) |
insert(ContainerRandomAccessIterator<TValue>, ContainerRandomAccessIterator<TValue>, TValue) |
Adds an element at a specified position in the container. |
insert(ContainerRandomAccessIterator<TValue>, IEnumerable) |
Adds elements at a specified position in the container. |
insert(ContainerRandomAccessIterator<TValue>, IInputIterator<TValue>, IInputIterator<TValue>) |
Adds elements at a specified position in the container. |
insert(ContainerRandomAccessIterator<TValue>, Int32, TValue) |
Adds an element at a specified position in the container. |
pop_back() |
Removes the last element of a non-empty container. |
pop_front() |
Removes the first element of a non-empty container. |
push_back(TValue) |
Adds an element to the end of a container. |
push_front(TValue) |
Adds an element to the beginning of a container. |
rbegin(ReverseRandomAccessIterator<TValue>) |
Designates the beginning of the reversed controlled sequence. |
rend(ReverseRandomAccessIterator<TValue>) |
Designates the end of the reversed controlled sequence. |
resize(Int32, TValue) |
Changes the number of elements. |
resize(Int32) |
Changes the number of elements. |
size() |
Counts the number of elements. |
swap(IDeque<TValue>) |
Swaps the contents of two containers. |
valid_bias(Int32) |
Determines if a given bias is valid for the container. The bias is the offset from the current element zero. (Inherited from IRandomAccessContainer<TValue>) |
Extension Methods
Cast<TResult>(IEnumerable) |
Casts the elements of an IEnumerable to the specified type. |
OfType<TResult>(IEnumerable) |
Filters the elements of an IEnumerable based on a specified type. |
AsParallel(IEnumerable) |
Enables parallelization of a query. |
AsQueryable(IEnumerable) |
Converts an IEnumerable to an IQueryable. |