Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *BitUnpack(TMtxVecInt *Src, int SrcIndex, int Index, int Len); | Converts Src to unpacked bit storage. |
| 2 | TMtxInt *BitUnpack(TMtxInt *Src, const TIntPrecision DstPrecision = TIntPrecision::prInt32); | Unpacks bit storage to specified integer storage. |
Overload 1: TMtxVecInt *BitUnpack(TMtxVecInt *Src, int SrcIndex, int Index, int Len);
Converts Src to unpacked bit storage.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Remarks:
If bit at Src[i] <> 0 then Integer (32, 16 or 8bit) at index "i" in the calling vector is set to 1. Returns the result of bit unpacking the bits stored in Src values [SrcIndex]..[SrcIndex + Len - 1] and stored in the calling object (Self) values [Index]..[Index+Len-1]. The storage precision of the calling object is preserved. The Len parameter specifies the number of bits that will be unpacked from Src.
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 2: TMtxInt *BitUnpack(TMtxInt *Src, const TIntPrecision DstPrecision = TIntPrecision::prInt32);
Unpacks bit storage to specified integer storage.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxInt * | |
| 2 | DstPrecision = TIntPrecision::prInt32 | const TIntPrecision |
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler