Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TVecInt *BitUnpack(TVecInt *Src, TIntPrecision DstPrecision = TIntPrecision::prInt32) const; | Converts Src to packed bit storage. |
| 2 | TMtxVecInt *BitUnpack(TMtxVecInt *Src, int SrcIndex, int Index, int Len) const; | Converts Src to unpacked bit storage. |
Overload 1: TVecInt *BitUnpack(TVecInt *Src, TIntPrecision DstPrecision = TIntPrecision::prInt32) const;
Converts Src to packed bit storage.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVecInt * | |
| 2 | DstPrecision = TIntPrecision::prInt32 | TIntPrecision |
If bit at Src[i] <> 0 then Integer (32, 16 or 8bit) at index "i" in the calling vector is set to 1. The storage precision of the calling object is preserved. The size of the calling object is adjusted automatically. Unpack to array with precision other than Int32 is 8x slower.
Overload 2: TMtxVecInt *BitUnpack(TMtxVecInt *Src, int SrcIndex, int Index, int Len) const;
Converts Src to unpacked bit storage.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
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 stred Src values [0]..[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. Unpack to array with precision other than Int32 is 8x slower.