|
◆ csv_record_addfield_double()
subroutine csv_record_addfield_double |
( |
type(csv_record), intent(inout) |
this, |
|
|
double precision, intent(in) |
field, |
|
|
character(len=*), intent(in), optional |
form, |
|
|
logical, intent(in), optional |
force_quote |
|
) |
| |
Add a field from a DOUBLE PRECISION 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 736 del file file_utilities.F90.
738 END SUBROUTINE csv_record_getfield_int 746 SUBROUTINE csv_record_getfield_real(this, field, ier)
|