Click or drag to resize

ContainerHelper.LastIndexOf<V> Method (Deque<V>, V)

Returns the first position from the end inwards of entry in the deque a

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

Parameters

a
Type: de.unika.ipd.grGen.libGr.Deque<V>
A Deque, i.e. double ended queue.
entry
Type: V
The value to search for.

Type Parameters

V

Return Value

Type: Int32
The first position from the end inwards of entry in the deque a, -1 if entry not in a.
See Also