|
Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
|
Static Public Member Functions | |
| static constexpr uint32_t | GetBitCount () |
| static constexpr uint32_t | GetBitCapacity () |
| static constexpr uint32_t | GetWordCount () |
Static Public Attributes | |
| static constexpr uint32_t | bitsPerWord = (CHAR_BIT * sizeof(WordType)) |
| static constexpr uint32_t | wordCount = ((bitCount + bitsPerWord - 1) / bitsPerWord) |
| static constexpr uint32_t | totalBitCount = wordCount * bitsPerWord |
| static constexpr uint32_t | lastWordbitCount = bitCount % bitsPerWord |
| static constexpr uint32_t | lastWordMask |
Protected Attributes | |
| WordType | contents [wordCount] |
Friends | |
| Bitset | operator~ (const Bitset &obj) |
|
staticconstexpr |