my @filtered = do for $s.comb -> $a, $b { [ $a, $b ] if $a ne $b; } #### my @filtered = gather for $s.comb -> $a, $b { take [ $a, $b ] if $a ne $b; }