Click or drag to resize

ContainerHelperIndexOfV(DequeV, V) Method

Returns the first position of entry in the deque a

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

Parameters

a  DequeV
A Deque, i.e. double ended queue.
entry  V
The value to search for.

Type Parameters

V

Return Value

Int32
The first position of entry in the deque a, -1 if entry not in a.
See Also