Version: Unity 6.7 Beta (6000.7)
LanguageEnglish
  • C#

NativeBitArray.ReadOnly.GetBits

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public ulong GetBits(int pos, int numBits);

Parameters

Parameter Description
pos Index of the first bit to get.
numBits Number of bits to get (must be between 1 and 64).

Returns

ulong A ulong which has bits copied from this array.

Description

Returns a ulong which has bits copied from this array.

The source bits in this array run from index pos up to (but not including) pos + numBits. No exception is thrown if pos + numBits exceeds the length.

The first source bit is copied to the lowest bit of the ulong; the second source bit is copied to the second-lowest bit of the ulong; and so forth. Any remaining bits in the ulong will be 0.