raw beginner with scodec here. Does scodec provide a nice way to convert an unsigned decimal integer value to a literal binary unsigned integer string with length specified as an input, left-padding with zeroes as needed up to the specified length? If so, what would that be? Many thanks...
Sample pseudocode:
{convert(unsignedDecimalIntValue = 5, bitCount = 6) => "000101"}