32// Size (in bits) for "required/optional/repeated bytes foo":
33// if optional: [1 bit - has_foo()?][N bits - prefix with length of byte string][string bytes]
34// if required: [N bits - prefix with length of string][string bytes]
35// if repeated: [M bits - prefix with the number of repeated values][same as "required" for value with index 0][same as "required" for index = 1]...[same as required for last index]