/python-either

Maybe and Either data structures for Python

Primary LanguagePythonApache License 2.0Apache-2.0

Python "Either" and "Maybe"

https://github.com/kennknowles/python-either

This library provides two fundamental near-trivial data structures for Python:

  • Either also known as "coproduct", "sum type", "variant", "tagged union", "disjoint union", etc: A value that comes from one of two sets
  • Maybe also known as "option" or "Either Nothing": A value that may be missing. (Python has "None" but it does not compose)

Each is ~10 lines, mostly boilerplate, but now they are in one place in a library.

Further Reading:

If you are unfamiliar with these concepts, here is some reading from around the web:

Either:

Maybe:

Contributors

Copyright and License

Copyright 2012- Kenneth Knowles

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.