class Dry::Logic::Rule::Conjunction

def call(*args)

def call(*args)
  left.(*args).and(right)
end

def type

def type
  :and
end