Click or drag to resize

ContainerHelperSubdequeV Method (DequeV, Int32, Int32)

Creates a new deque with length values copied from a from index start on.

Namespace:  de.unika.ipd.grGen.libGr
Assembly:  libGr (in libGr.dll) Version: GrGen.NET 7.2
Syntax
C#
public static Deque<V> Subdeque<V>(
	Deque<V> a,
	int start,
	int length
)

Parameters

a
Type: de.unika.ipd.grGen.libGrDequeV
A Deque, i.e. double ended queue.
start
Type: SystemInt32
A start position in the deque.
length
Type: SystemInt32
The number of elements to copy from start on.

Type Parameters

V

Return Value

Type: DequeV
A new Deque, containing the length first values from start on.
See Also