in reply to Re: Detecting Subroutine Input Type
in thread Detecting Subroutine Input Type

sub thinger { my @array = ( ref($_[0]) eq 'ARRAY' ? @{$_[0]} : @_ ); }