Re: What is the pipe symbol doing to my array?

[email protected] (Brian Duggan) Mon, 3 Nov 2025 20:50:23 -0500
Newsgroups perl.perl6.users
Message-ID <aQlb3x5d0izJguEP@haraka>
The pipe symbol creates a Slip

  [0] > say (|<a b>).WHAT
  (Slip)

It is precisely equivalent to

  <a b>.Slip

see

   https://docs.raku.org/type/Slip

hope this helps

Brian