alloc static method

Allocates memory for a ComplexStruct instance.

Returns a pointer to the allocated memory.

Implementation

static Pointer<ComplexStruct> alloc() {
  return calloc<ComplexStruct>();
}