IBlockingDeque.Contains(Object) Method

Definition

Returns true if this deque contains the specified element.

[Android.Runtime.Register("contains", "(Ljava/lang/Object;)Z", "GetContains_Ljava_lang_Object_Handler:Java.Util.Concurrent.IBlockingDequeInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public bool Contains (Java.Lang.Object? o);
[<Android.Runtime.Register("contains", "(Ljava/lang/Object;)Z", "GetContains_Ljava_lang_Object_Handler:Java.Util.Concurrent.IBlockingDequeInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member Contains : Java.Lang.Object -> bool

Parameters

o
Object

object to be checked for containment in this deque

Returns

true if this deque contains the specified element

Implements

Attributes

Exceptions

if the class of the specified element is incompatible with this deque ("../Collection.html#optional-restrictions">optional)

if the specified element is null (optional)

Remarks

Returns true if this deque contains the specified element. More formally, returns true if and only if this deque contains at least one element e such that o.equals(e).

Java documentation for java.util.concurrent.BlockingDeque.contains(java.lang.Object).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to