Skip to content

Instantly share code, notes, and snippets.

@RadoslawB
Last active March 24, 2020 01:00
Show Gist options
  • Save RadoslawB/9a643123a2f6ac537064cedbf7a48f95 to your computer and use it in GitHub Desktop.
Save RadoslawB/9a643123a2f6ac537064cedbf7a48f95 to your computer and use it in GitHub Desktop.
piped = pipe(
str.strip,
str.capitalize,
)(' PIPED ') # -> 'Piped'
print(piped)
add_one = lambda x: x + 1
double = lambda x: x * 2
composed = compose(
add_one,
double
)(1) # -> 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment