BitArray.length

Resizes this array to newlen bits. If newlen is larger than the current length, the new bits will be initialized to zero.

  1. size_t length()
  2. void length(size_t newlen)
    struct BitArray
    void
    length
    (
    size_t newlen
    )

Parameters

newlen size_t

The number of bits this array should contain.

Meta