Method: Rupture::Fn#complement

Defined in:
lib/rupture/fn.rb

#complementObject Also known as: -@



5
6
7
8
9
# File 'lib/rupture/fn.rb', line 5

def complement
  lambda do |*args|
    not call(*args)
  end
end