Help for this page

Select Code to Download


  1. or download this
    #  dereference an array or an hash
    sub de_ref
    ...
    { return
        map {ref $_ eq 'HASH' ? (sort values %$_) : ($_) } @_;
    }