class Dry::Logic::Rule::ExclusiveDisjunction

def call(input)

def call(input)
  Logic.Result(left.(input).success? ^ right.(input).success?, self, input)
end