Mapping types into a given chunk of memory

BlitzMax Forums/BlitzMax Programming/Mapping types into a given chunk of memory

Nelvin(Posted 2004) [#1]
Hi,

creating arrays of types does create an array of references to these types and each single instance has to be created by new and assigned.

What I'd like to know is if there's a way to do my own memory management for struct alike types without the loss of the comfortable access given the language syntax (of course I can just use a block of memory and access it directly, but that's not what I'd like to do :-))

Regards,
Nelvin