aboutsummaryrefslogblamecommitdiff
path: root/devel/p5-Sub-Multi/pkg-descr
blob: 53deeb57ef1ab84ecd993b6eb91ab35eb29afdf5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                            
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: http://search.cpan.org/dist/Sub-Multi/