LongSortedListContains Method |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Determine if the ILongArray contains the specified element.
Namespace:
Tangosol.Util
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
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