libsim Versione 7.2.1

◆ csv_record_addfield_double()

subroutine, private 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 
)
private

Add a field from a DOUBLE PRECISION variable to the csv record this.

The field will be quoted if necessary.

Parametri
[in,out]thisobject where to add field
[in]fieldfield to be added
[in]formoptional format
[in]force_quoteif provided and .TRUE. , the field will be quoted even if not necessary

Definizione alla linea 710 del file file_utilities.F90.

711!! interpreted as an integer, or if it is longer than 32 characters,
712!! it returns a missing value.
713SUBROUTINE csv_record_getfield_int(this, field, ier)
714TYPE(csv_record),INTENT(INOUT) :: this
715INTEGER,INTENT(OUT) :: field
716INTEGER,INTENT(OUT),OPTIONAL :: ier
717
718CHARACTER(len=32) :: cfield
719INTEGER :: lier
720
721CALL csv_record_getfield(this, field=cfield, ier=ier)

Generated with Doxygen.