ocean.core.BitArray

This module contains a packed bit array implementation in the style of D's built-in dynamic arrays.

Members

Structs

BitArray
struct BitArray

This struct represents an array of boolean values, each of which occupy one bit of memory for storage. Thus an array of 32 bits would occupy the same space as one integer value. The typical array operations--such as indexing and sorting--are supported, as well as bitwise operations such as and, or, xor, and complement.

Meta

License

Tango Dual License: 3-Clause BSD License / Academic Free License v3.0. See LICENSE_TANGO.txt for details.

Authors

Walter Bright, Sean Kelly