Create a new Array Type.
- Resource Management:
- This function allocates resources that must later be freed by calling DOFType_Destroy.
If the minLength and maxLength are the same, a fixed-length Array type is created. Otherwise, a variable-sized Array type is created.
- Parameters
-
| subtype | The type of the Array elements. This should not be NULL. |
| minLength | The minimum number of elements in the Array. This should be less than maxLength. |
| maxLength | The maximum number of elements in the Array. This should be greater than minLength. |
- Returns
- The new DOFType, or NULL if it could not be created.