 | ContainerHelperIndexOfOrdered(IList, Object) Method |
Returns the first position of entry in the array a with a binary search - thus the array must be ordered.
Namespace: de.unika.ipd.grGen.libGrAssembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntaxpublic static int IndexOfOrdered(
IList a,
Object entry
)
Parameters
- a IList
- A List, i.e. dynamic array.
- entry Object
- The value to search for.
Return Value
Int32The first position of entry in the array a, -1 if entry not in a.
See Also