diff options
| author | nomnombtc <nomnombtc@arcor.de> | 2025-08-11 21:20:53 +0700 |
|---|---|---|
| committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2025-08-11 22:04:14 +0700 |
| commit | 8a2c07a85689e7f79890138e97624d266b08c062 (patch) | |
| tree | 37b351a6ed92508fc25dc9d8a1f64b188c7ae2fb /python/python3-bitarray/README | |
| parent | 535c893d167b5c4bba35ab166e70ac4499c76e47 (diff) | |
python/python3-bitarray: Added (efficient arrays of booleans).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-bitarray/README')
| -rw-r--r-- | python/python3-bitarray/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/python/python3-bitarray/README b/python/python3-bitarray/README new file mode 100644 index 0000000000..6aef40b34a --- /dev/null +++ b/python/python3-bitarray/README @@ -0,0 +1,11 @@ +Efficient arrays of booleans + +This library provides an object type which efficiently represents an +array of booleans. Bitarrays are sequence types and behave very much +like usual lists. Eight bits are represented by one byte in a +contiguous block of memory. The user can select between two +representations: little-endian and big-endian. All functionality is +implemented in C. Methods for accessing the machine representation are +provided, including the ability to import and export buffers. This +allows creating bitarrays that are mapped to other objects, including +memory-mapped files. |
