module Daitai::And

Public Instance Methods

and() click to toggle source
# File lib/daitai/functions/and.rb, line 5
def and
  lambda do |a, b|
    a && b
  end.curry
end