ISpliterator.TryAdvance(IConsumer) Method

Definition

If a remaining element exists, performs the given action on it, returning true; else returns false.

[Android.Runtime.Register("tryAdvance", "(Ljava/util/function/Consumer;)Z", "GetTryAdvance_Ljava_util_function_Consumer_Handler:Java.Util.ISpliteratorInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)]
public bool TryAdvance (Java.Util.Functions.IConsumer? action);
[<Android.Runtime.Register("tryAdvance", "(Ljava/util/function/Consumer;)Z", "GetTryAdvance_Ljava_util_function_Consumer_Handler:Java.Util.ISpliteratorInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)>]
abstract member TryAdvance : Java.Util.Functions.IConsumer -> bool

Parameters

action
IConsumer

The action

Returns

false if no remaining elements existed upon entry to this method, else true.

Attributes

Remarks

If a remaining element exists, performs the given action on it, returning true; else returns false. If this Spliterator is #ORDERED the action is performed on the next element in encounter order. Exceptions thrown by the action are relayed to the caller.

Subsequent behavior of a spliterator is unspecified if the action throws an exception.

Java documentation for java.util.Spliterator.tryAdvance(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.

Applies to