IIntUnaryOperator.Compose(IIntUnaryOperator) Method

Definition

Returns a composed operator that first applies the before operator to its input, and then applies this operator to the result.

[Android.Runtime.Register("compose", "(Ljava/util/function/IntUnaryOperator;)Ljava/util/function/IntUnaryOperator;", "GetCompose_Ljava_util_function_IntUnaryOperator_Handler:Java.Util.Functions.IIntUnaryOperator, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)]
public virtual Java.Util.Functions.IIntUnaryOperator? Compose (Java.Util.Functions.IIntUnaryOperator? before);
[<Android.Runtime.Register("compose", "(Ljava/util/function/IntUnaryOperator;)Ljava/util/function/IntUnaryOperator;", "GetCompose_Ljava_util_function_IntUnaryOperator_Handler:Java.Util.Functions.IIntUnaryOperator, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)>]
abstract member Compose : Java.Util.Functions.IIntUnaryOperator -> Java.Util.Functions.IIntUnaryOperator
override this.Compose : Java.Util.Functions.IIntUnaryOperator -> Java.Util.Functions.IIntUnaryOperator

Parameters

before
IIntUnaryOperator

the operator to apply before this operator is applied

Returns

a composed operator that first applies the before operator and then applies this operator

Attributes

Remarks

Returns a composed operator that first applies the before operator to its input, and then applies this operator to the result. If evaluation of either operator throws an exception, it is relayed to the caller of the composed operator.

Java documentation for java.util.function.IntUnaryOperator.compose(java.util.function.IntUnaryOperator).

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