Skip to content

pPomCo/py-bitvectorset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 for further informations.

About

Efficient immutable sets using bit-vectors

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors