Metadata-Version: 2.4
Name: bitvectorset
Version: 1.0.2
Summary: Efficient immutable sets as bit-vectors
Project-URL: Homepage, https://github.com/pPomCo/py-bitvectorset
Author-email: Pierre Pomeret-Coquot <pierre.pomeret@irit.fr>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3
Description-Content-Type: text/markdown

# Bit-vector sets

Efficient implementation of immutable sets using bit-vectors.

It follow the same specification as `set` and `frozenset`.

```
A = BitVectorSet((0,2,4))
# {0, 2, 4}

B = BitVectorSet((0,1,2))
# {0, 1, 2}

print("Intersection:", A & B)
# {0, 2}
```

See [the demo and tests](demo.ipynb) for further informations.