class Dry::Logic::Rule::Each

def call(input)

def call(input)
  Logic.Result(input, input.map { |element| predicate.(element) }, self)
end

def type

def type
  :each
end