# Pastebin QHM6KSZN MacBook-Pro-de-Fernando:TakeIgnoreSeq fernando$ perl6 -I. -MTakeIgnoreSeq -e ' say ((^10).Seq but TakeIgnoreSeq).take-while(* < 5) ' (0 1 2 3 4) MacBook-Pro-de-Fernando:TakeIgnoreSeq fernando$ perl6 -I. -MTakeIgnoreSeq -e ' say ((^10).Seq but TakeIgnoreSeq).take-while(* < 5).ignore-until(6) ' (0 1 2 3 4 7 8 9) MacBook-Pro-de-Fernando:TakeIgnoreSeq fernando$ perl6 -I. -MTakeIgnoreSeq -e ' say ((^10).Seq but TakeIgnoreSeq).take-while(* < 5).ignore-until(6).take-while: * < 9 ' (0 1 2 3 4 7 8)