AtomicReferenceArray.GetAndAccumulate(Int32, Object, IBinaryOperator) 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.
Atomically updates the element at index i with the
results of applying the given function to the current and
given values, returning the previous value.
[Android.Runtime.Register("getAndAccumulate", "(ILjava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;", "", ApiSince=24)]
public Java.Lang.Object? GetAndAccumulate (int i, Java.Lang.Object? x, Java.Util.Functions.IBinaryOperator? accumulatorFunction);
[<Android.Runtime.Register("getAndAccumulate", "(ILjava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;", "", ApiSince=24)>]
member this.GetAndAccumulate : int * Java.Lang.Object * Java.Util.Functions.IBinaryOperator -> Java.Lang.Object
Parameters
- i
- Int32
the index
- x
- Object
the update value
- accumulatorFunction
- IBinaryOperator
a side-effect-free function of two arguments
Returns
the previous value
- 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.