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 details)

Uploaded Source

File details

Details for the file boolmerge-1.0.1.tar.gz.

File metadata

  • Download URL: boolmerge-1.0.1.tar.gz
  • Upload date:
  • Size: 86.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for boolmerge-1.0.1.tar.gz
Algorithm Hash digest
SHA256 12413490fa5b3462ba983e6aed3d7ddf132b9e43d2dde78b62be22ec41bb205c
MD5 bc2884cd373a6f653ebf8b2466d3fd48
BLAKE2b-256 d55eca6b3ac5950d1189d59244d999051dfb06aeae4ac5073119cb00aceb37de

See more details on using hashes here.

Supported by

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