Skip to content

Instantly share code, notes, and snippets.

@preaction
Created June 12, 2012 04:47
Show Gist options
  • Select an option

  • Save preaction/2915077 to your computer and use it in GitHub Desktop.

Select an option

Save preaction/2915077 to your computer and use it in GitHub Desktop.
method_ref for Perl
sub method_ref {
my ( $self, $method_name, @args ) = @_;
return sub { $self->$method_name( @args, @_ ); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment