I am wondering, what is the way to get a real read/write pointer to the actual chunk data and obtain the information necessary to do arithmetic and step over it quickly and efficiently? Is the any kind of diagram of how a "chunk" is composed and what kind of alignment/padding they use and so forth, and what APIs are there to obtain that sort of information to know what sizeof(...) and count math to check ... ? And are there sets of rules or "golden assumptions" that can be made about alignment/offset within a chunk due to the nature of the DOTS architecture?
It seems like a lot of calling different methods to get at something I could much more easily do with pointer arithmetic and old school C-style programming sometimes (at least with less "noise" in the code, much less keystrokes/text) ...
I know, I know ... and to be honest with you, I'm already using "unsafe" code for speed/simplicity in other ways, have "unsafe" plugins I built that would make the C# police gasp and other scary things happening, haha! It's "academic", we're not hurting anything! 😄
I just need to know this in my quest to become one with the Great Archetype and receive the chunks of its wisdom
