Now have to do my int $ = $_ when passing the value to &splitint as rakudo doesn't seem to like having values from CArrays passed directly to subs, complaining that it "Cannot auto-decontainerize argument".
Calling &splitint with map now returns a multidimensional Seq which Buf.new won't accept ("This type cannot unbox to a native integer"), so changed to flatmap.
With this patch all tests pass.
Now have to do
my int $ = $_
when passing the value to &splitint as rakudo doesn't seem to like having values from CArrays passed directly to subs, complaining that it "Cannot auto-decontainerize argument".Calling &splitint with map now returns a multidimensional Seq which Buf.new won't accept ("This type cannot unbox to a native integer"), so changed to flatmap.