| DequeT Constructor (IEnumerableT) |
Initializes a new instance of the
DequeT class that contains elements copied
from the specified collection and has sufficient capacity to accommodate the number of
elements copied.
Namespace: DigitalRune.CollectionsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public Deque(
IEnumerable<T> collection
)
Public Sub New (
collection As IEnumerable(Of T)
)
public:
Deque(
IEnumerable<T>^ collection
)
new :
collection : IEnumerable<'T> -> Deque
Parameters
- collection
- Type: System.Collections.GenericIEnumerableT
The collection whose elements are copied to the new DequeT.
Exceptions See Also