OpenCMISS-Iron Internal API Documentation
|
Converts a list to its equivalent character string representation. More...
Private Member Functions | |
character(len=maxstrlen) function | list_to_character_c (NUMBER_IN_LIST, LIST, FORMAT, ERR, ERROR, LIST_LENGTHS) |
Converts a character list to its equivalent character string representation as determined by the supplied format. If present, the optional argument LIST_LENGTHS is used for the lengths of each list elements length otherwise the trimmed length is used. NOTE: The FORMAT is ignored for this child FUNCTION. More... | |
character(len=maxstrlen) function | list_to_character_intg (NUMBER_IN_LIST, LIST, FORMAT, ERR, ERROR) |
Converts an integer list to its equivalent character string representation as determined by the supplied format. More... | |
character(len=maxstrlen) function | list_to_character_lintg (NUMBER_IN_LIST, LIST, FORMAT, ERR, ERROR) |
Converts an long integer list to its equivalent character string representation as determined by the supplied format. More... | |
character(len=maxstrlen) function | list_to_character_l (NUMBER_IN_LIST, LIST, FORMAT, ERR, ERROR) |
Converts a logical list to its equivalent character string representation as determined by the supplied format string. The FORMAT is ignored for this child FUNCTION. More... | |
character(len=maxstrlen) function | list_to_character_sp (NUMBER_IN_LIST, LIST, FORMAT, ERR, ERROR) |
Converts a single precision list to its equivalent character string representation as determined by the supplied format string. More... | |
character(len=maxstrlen) function | list_to_character_dp (NUMBER_IN_LIST, LIST, FORMAT, ERR, ERROR) |
Converts a double precision list to its equivalent character string representation as determined by the supplied format string. More... | |
Converts a list to its equivalent character string representation.
Definition at line 117 of file strings.f90.
|
private |
Converts a character list to its equivalent character string representation as determined by the supplied format. If present, the optional argument LIST_LENGTHS is used for the lengths of each list elements length otherwise the trimmed length is used. NOTE: The FORMAT is ignored for this child FUNCTION.
[in] | number_in_list | The number of items in the list |
[in] | list | LIST(i). The i'th item in the list |
[in] | format | The format to use. Ignored for character lists. |
[out] | err | The error code |
[out] | error | The error string |
[in] | list_lengths | LIST_LENGTHS(i). Optional, The length of the i'th list item. |
Definition at line 523 of file strings.f90.
|
private |
Converts a double precision list to its equivalent character string representation as determined by the supplied format string.
[in] | number_in_list | The number of items in the list |
[in] | list | LIST(i). The i'th item in the list |
[in] | format | The format to use for the conversion |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 799 of file strings.f90.
|
private |
Converts an integer list to its equivalent character string representation as determined by the supplied format.
[in] | number_in_list | The number of items in the list |
[in] | list | LIST(i). The i'th item in the list |
[in] | format | The format to use for the conversion |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 593 of file strings.f90.
|
private |
Converts a logical list to its equivalent character string representation as determined by the supplied format string. The FORMAT is ignored for this child FUNCTION.
[in] | number_in_list | The number of items in the list |
[in] | list | LIST(i). The i'th item in the list |
[in] | format | The format to use. Ignored for logical lists. |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 697 of file strings.f90.
|
private |
Converts an long integer list to its equivalent character string representation as determined by the supplied format.
[in] | number_in_list | The number of items in the list |
[in] | list | LIST(i). The i'th item in the list |
[in] | format | The format to use for the conversion |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 645 of file strings.f90.
|
private |
Converts a single precision list to its equivalent character string representation as determined by the supplied format string.
[in] | number_in_list | The number of items in the list |
[in] | list | LIST(i). The i'th item in the list |
[in] | format | The format to use for the conversion |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 748 of file strings.f90.