I am looking to create a fixed size struct header for variable sized array in the D programming language.. In "C" one would place a zero length or empty bracket Array as the last item declared within the fixed struct header, and then adjust ones call to Malloc, to include the additional storage required by the variable sized part of the data structure, who's first element would be referenced by this last declaration.
But in the D language an Array is a more advanced object, and As I'm attempting to build up a set of structured Opcode strings, I really want to express a compound struct with a trailing memory reference as it's final item ( the first element of the array that follows..
How does one declare / create / work with a compound variable length memory structure when using the D programming language?