MCPcopy Create free account
hub / github.com/ajkhoury/ReClassEx / BitArray

Method BitArray

ReClass/BitArray.h:23–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21{
22public:
23 BitArray()
24 {
25 value = 0xFF;
26 length = sizeof(T) * CHAR_BIT;
27 size = length + 1;
28 bits = new char[size];
29 }
30
31 BitArray(T num)
32 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected