\(\newcommand{\W}[1]{ \; #1 \; }\) \(\newcommand{\R}[1]{ {\rm #1} }\) \(\newcommand{\B}[1]{ {\bf #1} }\) \(\newcommand{\D}[2]{ \frac{\partial #1}{\partial #2} }\) \(\newcommand{\DD}[3]{ \frac{\partial^2 #1}{\partial #2 \partial #3} }\) \(\newcommand{\Dpow}[2]{ \frac{\partial^{#1}}{\partial {#2}^{#1}} }\) \(\newcommand{\dpow}[2]{ \frac{ {\rm d}^{#1}}{{\rm d}\, {#2}^{#1}} }\)
ta_delete_array¶
Deallocate An Array and Call Destructor for its Elements¶
Purpose¶
Returns memory corresponding to an array created by (create by create_array ) to the available memory pool for the current thread.
array¶
The argument array has prototype
Type * array
It is a value returned by create_array and not yet deleted. The Type destructor is called for each element in the array.
Thread¶
The current thread must be the same as when create_array returned the value array . There is an exception to this rule: when the current execution mode is sequential (not parallel ) the current thread number does not matter.