BitsetsNET.BitsetContainer.FillLeastSignificant16bits C# (CSharp) Method

FillLeastSignificant16bits() public method

Fill the least significant 16 bits of the integer array, starting at index i, with the short values from this container. The caller is responsible to allocate enough room. The most significant 16 bits of each integer are given by the most significant bits of the provided mask.
public FillLeastSignificant16bits ( int x, int i, int mask ) : void
x int Provided array
i int Starting index
mask int Indicates most significant bits
return void
        public override void FillLeastSignificant16bits(int[] x, int i, int mask)
        {
            throw new NotImplementedException();
        }