|
◆ csv_record_addfield_int()
subroutine 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 |
|
) |
| |
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 660 del file file_utilities.F90.
668 this%cursor = min(i, SIZE(this%record) + 1)
669 IF ( PRESENT(flen)) flen = ofcursor
670 IF ( PRESENT(field)) THEN
671 IF (ofcursor > len(field)) THEN
|