strz Interface

public interface strz

Calls

interface~~strz~~CallsGraph interface~strz strz proc~strz_i4p strz_I4P interface~strz->proc~strz_i4p proc~strz_i2p strz_I2P interface~strz->proc~strz_i2p proc~strz_i1p strz_I1P interface~strz->proc~strz_i1p proc~strz_i8p strz_I8P interface~strz->proc~strz_i8p

Contents


Module Procedures

private elemental function strz_I8P(nz_pad, n) result(str)

The function strz_I8P converts integer to string, prefixing with the right number of zeros. This function achieves casting of integer to string.

Arguments

Type IntentOptional AttributesName
integer(kind=I4P), intent(in), optional :: nz_pad
integer(kind=I8P), intent(in) :: n

Return Value character(len=DI8P)

private elemental function strz_I4P(nz_pad, n) result(str)

The function strz_I4P converts integer to string, prefixing with the right number of zeros. This function achieves casting of integer to string.

Arguments

Type IntentOptional AttributesName
integer(kind=I4P), intent(in), optional :: nz_pad
integer(kind=I4P), intent(in) :: n

Return Value character(len=DI4P)

private elemental function strz_I2P(nz_pad, n) result(str)

The function strz_I2P converts integer to string, prefixing with the right number of zeros. This function achieves casting of integer to string.

Arguments

Type IntentOptional AttributesName
integer(kind=I4P), intent(in), optional :: nz_pad
integer(kind=I2P), intent(in) :: n

Return Value character(len=DI2P)

private elemental function strz_I1P(nz_pad, n) result(str)

The function strz_I1P converts integer to string, prefixing with the right number of zeros. This function achieves casting of integer to string.

Arguments

Type IntentOptional AttributesName
integer(kind=I4P), intent(in), optional :: nz_pad
integer(kind=I1P), intent(in) :: n

Return Value character(len=DI1P)