On Wed Oct 24 10:38:42 2012, masak wrote: > <masak> rn: my @a = <The quick brown fox>; @a[2, 3] .= rotate; @a[3] > .= ucfirst; say @a > <p6eval> niecza v22-14-g136ddcf: OUTPUT«The quick fox Brown» > <p6eval> ..rakudo 26c0aa: OUTPUT«No such method 'rotate' for invocant > of type 'Parcel' [...] > <masak> Niecza++ > * masak submits rakudobug > <moritz> somehow we have a problem in our type system > <masak> I agree-ish. > <TimToady> only one? > <moritz> if Parcel doesn't automatically get those methods it should > have, it means we lack a common role or so > <masak> aye.
Works now: > my @a = <The quick brown fox>; @a[2, 3] .= rotate; @a[3] .= ucfirst; say @a The quick fox Brown Closable with tests. -- Will "Coke" Coleda
