Wrapper class. Basically functional Maybe or Railway pattern.
Project description
FunctionalMaybe
A simple Maybe wrapper class that works. Creates a wrapper around variable and allows transformation of said variable to different values and supplying it to functions.
Usage:
import sys
from FunctionalMaybe import FunctionalMaybe as Maybe
joined = Maybe(["one", "two", "three"])\
.transform(lambda list_: ", ".join(list_))\ # Transform the values to something with lambda
.run(lambda result: print(result))\ # Run functions with the contained value
.unwrap() # Return the wrapped value
# We can easily e.g. print, if the wrapped value was an empty
if isinstance(joined, Maybe.Empty):
print(str(joined), file=sys.stderr)
Also supports calling the constructure inside the Maybe-class, which enables error handling via Maybe.Empty:
from FunctionalMaybe import FunctionalMaybe as Maybe
class Foo:
def __init__(self, x, y, z=None, w=1):
self.x = x
self.y = y
self.z = z
self.w = w
def __str__(self):
return f"{self.x}, {self.y}, {self.z}, {self.w}"
def log(val):
print(val)
Maybe().construct(Foo, 1, "one", w=4).transform(lambda foo: str(foo)).run(log)
# or could utilize the Maybe.Unwrapper in the following way:
Maybe("one").construct(Foo, 1, Maybe.Unwrapper, w=4).transform(lambda foo: str(foo)).run(log)
# When ever Maybe.Unwrapper is supplied as an argument, the Maybe.Unwrapper object
# is mapped to the wrapped value contained by the Maybe
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file functional_maybe-1.1.5.tar.gz.
File metadata
- Download URL: functional_maybe-1.1.5.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98057c69248699154c096d47e18e9e107217eace95340ce5e9f19f0c02af778f
|
|
| MD5 |
2fe15d35239cddef04a1ee5adc225f4d
|
|
| BLAKE2b-256 |
344bcc029945c0e5009676797f1b2c3b7cd586e7cb4b9f6929c588cf21c3eaca
|
File details
Details for the file functional_maybe-1.1.5-py3-none-any.whl.
File metadata
- Download URL: functional_maybe-1.1.5-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bf9a7aba27598aac9cc014ec61a1d78b39b5f1e683ef6da0eb92599f713a6cf
|
|
| MD5 |
88de402ee092130254c56ada78455a27
|
|
| BLAKE2b-256 |
b8e84c73bcfb2b341f0a8b335ad01d296b1e771ed44efea660a27c7b501b4657
|