Last active
May 21, 2019 09:32
-
-
Save mezzomondo/51c51e36922b5c9847b5380a272782e9 to your computer and use it in GitHub Desktop.
Datatypes (attr), sum types (sumtypes) and pattern matching (pampy) in Python 3.7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from attr import attrs, attrib, validators | |
from sumtypes import sumtype, constructor | |
from pampy import match | |
from typing import Any, Dict | |
@attrs | |
class Valid: | |
valid_id: int = attrib() | |
valid_description: str = attrib() | |
valid_content: Dict[str, Any] = attrib() | |
@sumtype | |
class Maybe: | |
Just = constructor(valid=attrib(validator=validators.instance_of(Valid))) | |
Nothing = constructor() | |
def useless(i: int) -> Maybe: | |
if i > 3: | |
return Maybe.Just(Valid(i, 'test', {'a': i, 'b': 'nope'})) | |
# throws a TypeError: return Maybe.Just(1) | |
return Maybe.Nothing() | |
def what_is(x: Maybe) -> str: | |
return match(x, | |
Maybe.Just, 'Just ' + repr(x), | |
Maybe.Nothing, 'Nothing') | |
if __name__ == '__main__': | |
just_i = useless(4) | |
nothing = useless(1) | |
print(what_is(just_i)) | |
print(what_is((nothing))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Even more idiomatic: