|
◆ csv_record_addfield_int()
subroutine, private file_utilities::csv_record_addfield_int |
( |
type(csv_record), intent(inout) |
this, |
|
|
integer, intent(in) |
field, |
|
|
character(len=*), intent(in), optional |
form, |
|
|
logical, intent(in), optional |
force_quote |
|
) |
| |
|
private |
Add a field from an INTEGER variable to the csv record this.
The field will be quoted if necessary.
- Parametri
-
[in,out] | this | object where to add field |
[in] | field | field to be added |
[in] | form | optional format |
[in] | force_quote | if provided and .TRUE. , the field will be quoted even if not necessary |
Definizione alla linea 676 del file file_utilities.F90.
676 'in csv_record_getfield, CHARACTER variable too short for field: '// & 677 t2c(len(field))// '/'// t2c(ocursor)) 684 SUBROUTINE add_char(char, check_space, field) 685 INTEGER(kind=int_b) :: char 686 LOGICAL, INTENT(IN) :: check_space Functions that return a trimmed CHARACTER representation of the input variable.
|