class Dry::Logic::Rule::Predicate

def to_s

def to_s
  if args.empty?
    name.to_s
  else
    "#{name}(#{args.map(&:inspect).join(", ")})"
  end
end