Skip to main content

Infix operators for Python

Project description

=====
Infix
=====

.. image:: http://img.shields.io/pypi/v/infix.svg
:target: https://pypi.python.org/pypi/infix/
:alt: Latest PyPI version

.. image:: https://travis-ci.org/borntyping/python-infix.svg
:target: https://travis-ci.org/borntyping/python-infix
:alt: Travis build status

A decorator that allows functions to be used as infix functions.

Infix operators are created and applied as such, and do not stop the function from being called normally::

>>> from infix import shift_infix as infix
...
>>> @infix
... def plus(a, b):
... return a + b
...
>>> print(40 <<plus>> 2)
42
>>> print(plus(5, 5))
10

Variant syntaxes
----------------

Multiple infix syntaxes are provided by the ``infix`` module::

>>> @and_infix
... def is_before(a, b):
... return a < b
...
>>> print(1 &is_before& 5)
True

>>> @or_infix
... def minus(a, b):
... return a - b
...
>>> print(1 |minus| 2)
-1

>>> @xor_infix
... def until(start, stop):
... return range(start, stop)
...
>>> print(list(1 ^until^ 10))
[1, 2, 3, 4, 5, 6, 7, 8, 9]

>>> @pow_infix
... def pow(a, b):
... return a**b
...
>>> print(3 **pow** 2)
9

>>> dpow = div_infix(pow)
>>> print(3 /dpow/ 2)
9

Custom syntaxes
----------------

Python has a large set of operators than could be overridden to provide the infix syntax, so instead of providing them all a ``make_infix`` function is provided. To use it, pass the names of the operatorsyou want to support::

>>> @make_infix('mod','pow','rshift')
... def until(start, stop):
... return list(range(start, stop))
>>> print(1 %until% 3)
[1, 2]
>>> print(2 <<until>> 4)
[2, 3]
>>> print(5 **until** 8)
[5, 6, 7]
>>> print(until(10,12))
[10, 11]

.. versionadded:: 1.2

The old ``custom_infix`` is still supported. It takes two parameters, the names of the left and right operator functions, though only the first is important::

>>> @custom_infix('__rmod__', '__mod__')
... def ate(a, b):
... return (a == 7 and b == 9)
...
>>> print(7 %ate% 9)
True
>>> print(6 %ate% 7)
False

The left function should be a `right operand <http://docs.python.org/2/reference/datamodel.html#object.__radd__>`_, and the right functions should be a `left operand <http://docs.python.org/2/reference/datamodel.html#object.__add__>`_.

You should be careful to avoid using operands that the objects your functions will take may provide themselves (as the initial right operand is only called if the previous object does not provide for that operand).

Binding
-------

The library now uses a binding feature to generate a temporary object halfway through the process. That means that half expressions now work::

>>> 3**pow
<pow_lbind: Waiting for right side>


.. versionadded:: 1.2

Example: Currying
-----------------

One possible use is in curring functions in Python. You can easily define a
curry function::

>>> from functools import partial
>>> curry = or_infix(partial)
>>> def volume(x, y, z):
... return x * y * z
>>> tot = volume |curry| 2 |curry| 3 |curry| 4
>>> tot()
24

Compatibility
-------------

Works on all major Python versions (2.6, 2.7, 3.2, 3.3, 3.4).

Tests
-----

The tests in this README files are run using `doctest`_. To run the tests, run ''python infix.py'' - alternatively, use `tox`_ to run the tests on all compatible Python versions.

.. _doctest: http://docs.python.org/3/library/doctest.html
.. _tox: http://testrun.org/tox/

Licence
-------

Copyright (C) 2013 Sam Clements

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

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

Source Distribution

infix-1.2.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

infix-1.2-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file infix-1.2.tar.gz.

File metadata

  • Download URL: infix-1.2.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for infix-1.2.tar.gz
Algorithm Hash digest
SHA256 a1bfdcf875bc072f41e426d0673f2e3017750743bb90cc725fffb292eb09648c
MD5 c57380f1607a273352c6116197544747
BLAKE2b-256 68b75cdfd5fecfa43cb96ca5a30d1a79f54015e84aa43d5d4a9a58e0ab96c7c5

See more details on using hashes here.

File details

Details for the file infix-1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for infix-1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4bcd1fb402932e46dea7d440a280eda0e6f2510aa683b0808a39902281551649
MD5 fc2a56abe1f269f68cb3267522151988
BLAKE2b-256 4b5652f97e6930954b173f1aee42ede5fda1ad91590e525828b0bf662e0d18e1

See more details on using hashes here.

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