Skip to main content

Tools for merging sorted iterables according to boolean operators

Project description

This module provides 4 efficient iterator types for merging sorted iterables according to boolean operators (AND, NOT, OR, XOR), in a lazy fashion. All code is written is C for performance reasons.

Installation

$ python setup.py install

Usage

First import the module:

>>> import boolmerge

All the iterator types have the same interface. They should be called with two argument, each one being a sorted iterable (be it of any kind), which items should be orderable. If this is not the case, the result is undefined.

boolmerge.andmerge returns an iterator which yields all items present in both of the iterables it is given as arguments:

>>> list(boolmerge.andmerge("acd", "abc"))
['a', 'c']

boolmerge.ormerge returns an iterator which yields all items present in any of the iterables it is given as arguments:

>>> list(boolmerge.ormerge("abcd", "cef"))
['a', 'b', 'c', 'd', 'e', 'f']

boolmerge.notmerge returns an iterator which yields all items present in the first iterable it is given as argument, but not in the second:

>>> list(boolmerge.notmerge("bdf", "abcf"))
['d']

boolmerge.xormerge returns an iterator which yields all items present in either of the iterables it is given as arguments, but not in both:

>>> list(boolmerge.xormerge("adf", "abcd"))
['b', 'c', 'f']

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

boolmerge-1.0.1.tar.gz (86.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page