|
Perl 6
Rakudo Hacking: Revision 3
Just some general information for hacking on the PIR code behind [Rakudo]
^^ Method Organization in Files: # Methods # Operators # Coercions # Private methods # Vtable functions "Source"<http://irclog.perlgeek.de/perl6/2008-12-21#i_779175> ^^ When do you use !EXPORT? If the method is "is export" in S29, we use !EXPORT If there is a separate sub, then we put that sub into .namespace [] and don't !EXPORT the method The reason is that grep { ... }, @list is different from @list.grep { ... } "Source"<http://irclog.perlgeek.de/perl6/2008-12-20#i_776952> |