LongSortedListContains Method |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Determine if the ILongArray contains the specified element.
Namespace:
Tangosol.Util
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic virtual bool Contains(
Object value
)
Parameters
- value
- Type: SystemObject
Element whose presence in this list is to be tested.
Return Value
Type:
Booleantrue if this list contains the specified element.
Implements
ILongArrayContains(Object)
Remarks
More formally, returns true if and only if this ILongArray
contains at least one element e such that
(o==null ? e==null : o.Equals(e)).
See Also