str Interface

public interface str

Module Procedures

private pure function str_int(i) result(s)

Converts integer “i” to string

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: i

Return Value character(len=str_int_len)

private pure function str_int64(i) result(s)

Converts integer “i” to string

Arguments

Type IntentOptional Attributes Name
integer(kind=int64), intent(in) :: i

Return Value character(len=str_int64_len)

private pure function str_logical(l) result(s)

Converts logical “l” to string

Arguments

Type IntentOptional Attributes Name
logical, intent(in) :: l

Return Value character(len=str_logical_len)