libsim Versione 7.2.4

◆ csv_record_addfield_real()

subroutine csv_record_addfield_real ( type(csv_record), intent(inout) this,
real, intent(in) field,
character(len=*), intent(in), optional form,
logical, intent(in), optional force_quote )

Add a field from a REAL 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 680 del file file_utilities.F90.

681
682CONTAINS
683
684SUBROUTINE add_char(char, check_space, field)
685INTEGER(kind=int_b) :: char
686LOGICAL,INTENT(IN) :: check_space
687CHARACTER(len=*),INTENT(OUT),OPTIONAL :: field
688
689CHARACTER(len=1) :: dummy ! this prevents a memory leak in TRANSFER()???
690
691ocursor = ocursor + 1

Generated with Doxygen.