-- Create a bit buffer with a capacity of 8 * Byte_Count bits. functionCreate
(Byte_Count : inPositive) -- The number of bytes in the buffer. returnBit_Buffer_Accessis-- The newly created bit buffer. begin return new Bit_Buffer(Byte_Count); endCreate;