rb icon indicating copy to clipboard operation
rb copied to clipboard

Red-Black tree implementations of dicts and sets.

These are implementations of sets and dictionaries based on Red-Black trees.

The dict compatible dictionary implementation supports the full dict interface and is drop-in compatible with both dict and orddict.

The sets compatible set implementation supports the full sets interface and is drop-in compatible with both sets and ordsets.

Documentation is included.