class AmazingPrint::Formatters::ArrayFormatter

def tuple_template(item)

def tuple_template(item)
  name_width, args_width = name_and_args_width
  [
    colorize(item[0].rjust(name_width), :method),
    colorize(item[1].ljust(args_width), :args),
    ' ',
    colorize(item[2], :class)
  ].join
end