C4267
C4244
Address warnings involving lossy conversions from larger integer-types into smaller integer-types
Add `Helpers:{getBits,getBit}`
Helpers:{getBits,getBit}
`constexpr` functions for extractint bitfields that lends itself a bit better to emitting instructions like `bextr` on x86 or `ubfx` on arm64. And may subjectively make things a bit more readable. "Extract `5` bits" rather than `& 0x1F`.
#pragma once