Return a string representation of this StaticBitArray.
Two format specifiers are supported:
separated with an underscore.
const b = StaticBitArray!16(([0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1])); const s1 = format("%s", b); assert(s1 == "[0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1]"); const s2 = format("%b", b); assert(s2 == "00001111_00001111");
See Implementation
Return a string representation of this StaticBitArray.
Two format specifiers are supported:
separated with an underscore.