Skip to content

Instantly share code, notes, and snippets.

@kmicinski
Created June 6, 2015 06:08
Show Gist options
  • Save kmicinski/1d033ed9ab220b787f95 to your computer and use it in GitHub Desktop.
Save kmicinski/1d033ed9ab220b787f95 to your computer and use it in GitHub Desktop.
Extending ruby with composition
class Proc
def of
lambda { |x| yield(call(x)) }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment