OptionalDouble.IfPresentOrElse(IDoubleConsumer, IRunnable) 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.
If a value is present, performs the given action with the value, otherwise performs the given empty-based action.
[Android.Runtime.Register("ifPresentOrElse", "(Ljava/util/function/DoubleConsumer;Ljava/lang/Runnable;)V", "", ApiSince=33)]
public void IfPresentOrElse (Java.Util.Functions.IDoubleConsumer? action, Java.Lang.IRunnable? emptyAction);
[<Android.Runtime.Register("ifPresentOrElse", "(Ljava/util/function/DoubleConsumer;Ljava/lang/Runnable;)V", "", ApiSince=33)>]
member this.IfPresentOrElse : Java.Util.Functions.IDoubleConsumer * Java.Lang.IRunnable -> unit
Parameters
- action
- IDoubleConsumer
the action to be performed, if a value is present
- emptyAction
- IRunnable
the empty-based action to be performed, if no value is present
- Attributes
Remarks
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.