P14 - 复制列表的元素。

作者:Johan Viklund

规范

P14 (*) Duplicate the elements of a list.

示例

> say ~dupli(<a b c c d>);
a a b b c c c c d d

源代码: P14-viklund.pl

use v6;

say <a b c c d>.map({ $_ xx 2 }).map({.list}).flat.list.perl;