Optional.IfPresent(IConsumer) 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 does nothing.
[Android.Runtime.Register("ifPresent", "(Ljava/util/function/Consumer;)V", "", ApiSince=24)]
public void IfPresent (Java.Util.Functions.IConsumer? action);
[<Android.Runtime.Register("ifPresent", "(Ljava/util/function/Consumer;)V", "", ApiSince=24)>]
member this.IfPresent : Java.Util.Functions.IConsumer -> unit
Parameters
- action
- IConsumer
the action to be performed, if a value is present
- Attributes
Remarks
If a value is present, performs the given action with the value, otherwise does nothing.
Java documentation for java.util.Optional.ifPresent(java.util.function.Consumer<? super T>)
.
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.