Better understanding of Zig idioms

I’ve used the techniques described here with great success when targeting resource-constrained MCUs; and like @nyc has suggested, putting the link pointer at the beginning of my Elem structure just made everything easier.

In my world, however, it’s often the case that ALL memory is statically allocated – which is to say that my arbitrarily complex “web” of nodes is “pre-wired”.

But then I ran into a limitation discussed in this post, where (very!!) ancient issue #131 describes the problem.

[[ good news and bad news here? @mlugg does have this on his (full!) plate; but it’s currently targeted for 0.14.0 from what I can understand :slightly_frowning_face: ]]

In the meanwhile, I’m continuing to evaluate alternatives to (efficiently!) implementing these sorts of statically-declared (recursive) web of nodes.