ad4f267b7a
search.cpan.org is shutting down. It will redirect to metacpan.org after June 25, 2018. With hat: perl
10 lines
296 B
Text
10 lines
296 B
Text
Perl6 allows multiple subs and methods with the same name, differing only in
|
|
their signature.
|
|
|
|
multi sub bar (Dog $foo) {?}
|
|
multi sub bar (Cat $foo) {?}
|
|
|
|
Dispatching will happen based on the runtime signature of the subroutine or
|
|
method call.
|
|
|
|
WWW: https://metacpan.org/release/Sub-Multi
|