IDoubleUnaryOperator.AndThen(IDoubleUnaryOperator) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a composed operator that first applies this operator to
its input, and then applies the after
operator to the result.
[Android.Runtime.Register("andThen", "(Ljava/util/function/DoubleUnaryOperator;)Ljava/util/function/DoubleUnaryOperator;", "GetAndThen_Ljava_util_function_DoubleUnaryOperator_Handler:Java.Util.Functions.IDoubleUnaryOperator, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)]
public virtual Java.Util.Functions.IDoubleUnaryOperator? AndThen (Java.Util.Functions.IDoubleUnaryOperator? after);
[<Android.Runtime.Register("andThen", "(Ljava/util/function/DoubleUnaryOperator;)Ljava/util/function/DoubleUnaryOperator;", "GetAndThen_Ljava_util_function_DoubleUnaryOperator_Handler:Java.Util.Functions.IDoubleUnaryOperator, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)>]
abstract member AndThen : Java.Util.Functions.IDoubleUnaryOperator -> Java.Util.Functions.IDoubleUnaryOperator
override this.AndThen : Java.Util.Functions.IDoubleUnaryOperator -> Java.Util.Functions.IDoubleUnaryOperator
Parameters
- after
- IDoubleUnaryOperator
the operator to apply after this operator is applied
Returns
a composed operator that first applies this operator and then
applies the after
operator
- Attributes
Remarks
Returns a composed operator that first applies this operator to its input, and then applies the after
operator to the result. If evaluation of either operator throws an exception, it is relayed to the caller of the composed operator.
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.