Skip to content

Instantly share code, notes, and snippets.

/sort.pl Secret

Created August 5, 2014 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/a0c723f5f31a4dcd0881 to your computer and use it in GitHub Desktop.
Save anonymous/a0c723f5f31a4dcd0881 to your computer and use it in GitHub Desktop.
sub sort {
my ($self, $cb) = @_;
no strict 'refs';
return $self->new($cb
? sort { local (*a, *b) = (\$a, \$b); $a->$cb($b) } @$self
: sort @$self);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment