Module bitvec::array[][src]

A statically-allocated, fixed-size, buffer containing a BitSlice region.

You can read the language’s array fundamental documentation here.

This module defines the BitArray immediate type, and its associated support code.

BitArray is equivalent to [bool; N], in its operation and in its relationship to the BitSlice type. It has little behavior or properties in its own right, and serves solely as a type capable of being used in immediate value position, and delegates to BitSlice for all actual work.

Structs

BitArray

An array of individual bits, able to be held by value on the stack.

IntoIter

A by-value bit-array iterator.