Module: Predicates

Defined in:
lib/predicates.rb

Instance Method Summary collapse

Instance Method Details

#not(pred) ⇒ Object



2
3
4
# File 'lib/predicates.rb', line 2

def not(pred)
  -> (bool) { !pred.(bool) }
end