Re: Question about ArrayArray#

2018-05-03 Thread Michal Terepeta
On Thu, May 3, 2018 at 2:40 PM Carter Schonwald wrote: > I think Ed’s structs package explicitly makes use of this :) > Oh, interesting! Thanks for the pointer! Looking at Ed's code, he's seems to be doing something similar to that I'm also interested in: having a

Re: Question about ArrayArray#

2018-05-03 Thread Carter Schonwald
I think Ed’s structs package explicitly makes use of this :) On Wed, May 2, 2018 at 7:31 AM Michal Terepeta <michal.terep...@gmail.com> wrote: > Hi all, > > I have a quick question about ArrayArray#. Is it safe to store *both* an > ByteArray# and ArrayArray# within the

Question about ArrayArray#

2018-05-02 Thread Michal Terepeta
Hi all, I have a quick question about ArrayArray#. Is it safe to store *both* an ByteArray# and ArrayArray# within the *same* ArrayArray#? For instance: - at index 0 of an ArrayArray# I store a different ArrayArray#, - at index 1 of that same ArrayArray# I store a ByteArray#. It seems to me