tostr Interface

public interface tostr

Calls

interface~~tostr~~CallsGraph interface~tostr tostr proc~real_to_str real_to_str interface~tostr->proc~real_to_str proc~int_to_str int_to_str interface~tostr->proc~int_to_str proc~bool_to_str bool_to_str interface~tostr->proc~bool_to_str

Called by

interface~~tostr~~CalledByGraph interface~tostr tostr proc~str_cat_real str_cat_real proc~str_cat_real->interface~tostr proc~intlen intlen proc~intlen->interface~tostr proc~real_cat_str real_cat_str proc~real_cat_str->interface~tostr interface~operator( + ) operator( + ) interface~operator( + )->proc~str_cat_real interface~operator( + )->proc~real_cat_str interface~len len interface~len->proc~intlen

Contents


Module Procedures

public function int_to_str(i) result(a)

Convert integer to string

Arguments

Type IntentOptional AttributesName
integer, intent(in) :: i

Return Value character(len=MAX_STRING_LEN)

public function real_to_str(r) result(a)

Convert real number to string

Arguments

Type IntentOptional AttributesName
real, intent(in) :: r

Return Value character(len=MAX_STRING_LEN)

public function bool_to_str(b) result(a)

Convert boolean variable to string

Arguments

Type IntentOptional AttributesName
logical, intent(in) :: b

Return Value character(len=MAX_STRING_LEN)