Skip to content

Instantly share code, notes, and snippets.

@alindeman
Last active December 14, 2015 01:19
Show Gist options
  • Save alindeman/5005382 to your computer and use it in GitHub Desktop.
Save alindeman/5005382 to your computer and use it in GitHub Desktop.
class Proc
def !
proc { |*args, &blk| !call(*args, &blk) }
end
end
puts ["", "abc"].detect(&!(:empty?.to_proc))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment