class Slop::Parser

def try_process_smashed_arg(flag)

-nFoo or -i5
try and process a flag with a "smashed" argument, e.g.
def try_process_smashed_arg(flag)
  option = matching_option(flag[0, 2])
  if option && option.expects_argument?
    process(option, flag[2..-1])
  end
end