On Sun, Sep 28, 2008 at 04:00:47AM +1000, Vasily Chekalkin wrote: > Patrick R. Michaud via RT wrote: >>> + $P0 = get_hll_namespace ['Perl6Pair'] >>> + '!EXPORT'('pairs', $P0) >> >> It's probably wrong to export 'pairs' here -- the exported pairs >> function should be the one that is on 'Any'. Either that or it needs >> to be a :multi so that we can distinguish between them. > > It's not clear for me, should it be part of Any. Probably it shouldn't > be exported at all.
S29 shows List.pairs as being exported; presumably that's to be able to support my @x = pairs @list; Pm