IBiPredicate.And(IBiPredicate) Method

Definition

Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.

[Android.Runtime.Register("and", "(Ljava/util/function/BiPredicate;)Ljava/util/function/BiPredicate;", "GetAnd_Ljava_util_function_BiPredicate_Handler:Java.Util.Functions.IBiPredicate, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)]
public virtual Java.Util.Functions.IBiPredicate? And (Java.Util.Functions.IBiPredicate? other);
[<Android.Runtime.Register("and", "(Ljava/util/function/BiPredicate;)Ljava/util/function/BiPredicate;", "GetAnd_Ljava_util_function_BiPredicate_Handler:Java.Util.Functions.IBiPredicate, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)>]
abstract member And : Java.Util.Functions.IBiPredicate -> Java.Util.Functions.IBiPredicate
override this.And : Java.Util.Functions.IBiPredicate -> Java.Util.Functions.IBiPredicate

Parameters

other
IBiPredicate

a predicate that will be logically-ANDed with this predicate

Returns

a composed predicate that represents the short-circuiting logical AND of this predicate and the other predicate

Attributes

Remarks

Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another. When evaluating the composed predicate, if this predicate is false, then the other predicate is not evaluated.

Any exceptions thrown during evaluation of either predicate are relayed to the caller; if evaluation of this predicate throws an exception, the other predicate will not be evaluated.

Java documentation for java.util.function.BiPredicate.and(java.util.function.BiPredicate<? super T, ? super U>).

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