 | ContainerHelperSubdequeV(DequeV, Int32, Int32) Method |
Creates a new deque with length values copied from a from index start on.
Namespace: de.unika.ipd.grGen.libGrAssembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntaxpublic static Deque<V> Subdeque<V>(
Deque<V> a,
int start,
int length
)
Parameters
- a DequeV
- A Deque, i.e. double ended queue.
- start Int32
- A start position in the deque.
- length Int32
- The number of elements to copy from start on.
Type Parameters
- V
Return Value
DequeVA new Deque, containing the length first values from start on.
See Also