Long.RemainderUnsigned(Int64, Int64) Method

Definition

Returns the unsigned remainder from dividing the first argument by the second where each argument and the result is interpreted as an unsigned value.

[Android.Runtime.Register("remainderUnsigned", "(JJ)J", "", ApiSince=26)]
public static long RemainderUnsigned (long dividend, long divisor);
[<Android.Runtime.Register("remainderUnsigned", "(JJ)J", "", ApiSince=26)>]
static member RemainderUnsigned : int64 * int64 -> int64

Parameters

dividend
Int64

the value to be divided

divisor
Int64

the value doing the dividing

Returns

the unsigned remainder of the first argument divided by the second argument

Attributes

Remarks

Java documentation for java.lang.Long.remainderUnsigned(long, long).

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