Reading https://en.cppreference.com/w/cpp/language/bit_field, are the following conclusions correct?
- whether adjacent bit-fields have no padding in between is implementation-defined (this reads different in https://eel.is/c++draft/class.bit#:bit-field)
- the placement of a bit-field within the class-object is implementation-defined
- the position of the bits inside a bit-field is implementation-defined (although C++20 defines signed-integer to be 2ths complement).
(for C see: Characteristics of bit-Fields in C)