| IHListTLastIndexOf Method |
Returns the index of the last occurrence of the specified element
in this list, or -1 if this list does not contain the element.
More formally, returns the highest index i such that
(o == null ? get(i) == null : o.equals(get(i)))
or -1 if there is no such index.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntax Function LastIndexOf (
o As T
) As Integer
abstract LastIndexOf :
o : 'T -> int
Parameters
- o
- Type: T
element to search for
Return Value
Type:
Int32the index of the last occurrence of the specified element in
this list, or -1 if this list does not contain the element
See Also