nope, it means exactly what is written there. except that dynamic arrayis represented by struct like this: struct { void *dataptr; size_t itemCount; }this is what D calls "dynamic array", and this is what passed by value: struct with two members. dynamic array contents are *not* a part of"dynamic array type". yes, this is confusing.
Thank you.
