"Either" and "Maybe" data structures
Project description
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:
[Tagged union (Wikipedia)](http://en.wikipedia.org/wiki/Tagged_union)
[Either (Scala)](http://www.scala-lang.org/api/current/scala/Either.html)
[Boost.Variant (C++)](http://www.boost.org/doc/libs/1_50_0/doc/html/variant.html)
[Data.Either (Haskell)](http://www.haskell.org/ghc/docs/latest/html/libraries/base/Data-Either.html)
[std.variant (D)](http://dlang.org/phobos/std_variant.html)
Maybe:
[Option (Scala)](http://www.scala-lang.org/api/current/scala/Option.html)
[Maybe (Java)](https://github.com/npryce/maybe-java)
[Maybe pattern (Python recipe)](http://code.activestate.com/recipes/577248-maybe-pattern/)
[Data.Maybe (Haskell)](http://www.haskell.org/ghc/docs/latest/html/libraries/base/Data-Maybe.html)
[Maybe (Ruby)](https://github.com/bhb/maybe)
Contributors
[Kenn Knowles](https://github.com/kennknowles) ([@kennknowles](https://twitter.com/KennKnowles))
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
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file either-0.2.tar.gz
.
File metadata
- Download URL: either-0.2.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa1f52f720152a659daafbb07061c7080aad36b3e42b4068347c016ffc814641 |
|
MD5 | d02b0c10e7e528d9c01426ce418214e7 |
|
BLAKE2b-256 | 3a6b566b402a772e3ce9a7b5a51fb9acfc4caa1e4275763b946ff802bc82c587 |