libsim
Versione 7.1.9
|
Quick method to append an element to the array. Continua...
Membri pubblici | |
integer function | arrayof_integer_append (this, content) |
Quick method to append an element to the array. Continua... | |
integer function | arrayof_real_append (this, content) |
Quick method to append an element to the array. Continua... | |
integer function | arrayof_doubleprecision_append (this, content) |
Quick method to append an element to the array. Continua... | |
integer function | arrayof_logical_append (this, content) |
Quick method to append an element to the array. Continua... | |
Quick method to append an element to the array.
The return value is the position at which the element has been appended.
TYPE(arrayof_integer)::this | array object to extend |
INTEGER,INTENT(in)::content | object of TYPE INTEGER to append |
The return value is the position at which the element has been appended.
TYPE(arrayof_real)::this | array object to extend |
REAL,INTENT(in)::content | object of TYPE REAL to append |
The return value is the position at which the element has been appended.
TYPE(arrayof_doubleprecision)::this | array object to extend |
DOUBLEPRECISION,INTENT(in)::content | object of TYPE DOUBLEPRECISION to append |
The return value is the position at which the element has been appended.
TYPE(arrayof_logical)::this | array object to extend |
LOGICAL,INTENT(in)::content | object of TYPE LOGICAL to append |
Definizione alla linea 514 del file array_utilities.F90.