# Flatten arg list my @arg_objs; while (my $arg = shift) { if (ref($arg) eq 'ARRAY') { push(@arg_objs, @{$arg}); } else { push(@arg_objs, $arg); } }