Long.Expand(Int64, Int64) Method

Definition

Expands the bits of the value into the positions selected by the mask.

[Android.Runtime.Register("expand", "(JJ)J", "", ApiSince=36)]
public static long Expand(long i, long mask);
[<Android.Runtime.Register("expand", "(JJ)J", "", ApiSince=36)>]
static member Expand : int64 * int64 -> int64

Parameters

i
Int64

The value whose bits are expanded.

mask
Int64

The mask that selects bit positions.

Returns

The value with bits expanded into the masked positions.

Attributes

Remarks

Expands the bits of the value into the positions selected by the mask.

Applies to