freebsd-ports/devel/p5-Sub-Multi/pkg-descr
Ying-Chieh Liao a511067cd8 add p5-Sub-Multi 0.002
Data::Bind-based multi-sub dispatch
2006-08-01 01:52:19 +00:00

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