module Daitai::All

Public Instance Methods

all() click to toggle source
# File lib/daitai/functions/all.rb, line 5
def all
  lambda do |predicate, list|
    list.all?(&predicate)
  end.curry
end