strz Interface

public interface strz

Convert integer, to string, prefixing with the right number of zeros (integer to string type casting with zero padding).

Calls

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

Called by

interface~~strz~~CalledByGraph interface~strz strz program~volatile_doctest~8 volatile_doctest program~volatile_doctest~8->interface~strz program~volatile_doctest~30 volatile_doctest program~volatile_doctest~30->interface~strz program~volatile_doctest~32 volatile_doctest program~volatile_doctest~32->interface~strz program~volatile_doctest~24 volatile_doctest program~volatile_doctest~24->interface~strz program~volatile_doctest~72 volatile_doctest program~volatile_doctest~72->interface~strz program~volatile_doctest~78 volatile_doctest program~volatile_doctest~78->interface~strz program~volatile_doctest~86 volatile_doctest program~volatile_doctest~86->interface~strz program~volatile_doctest~88 volatile_doctest program~volatile_doctest~88->interface~strz

Contents


Module Procedures

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

Converting integer to string, prefixing with the right number of zeros.

Read more…

Arguments

TypeIntentOptionalAttributesName
integer(kind=I8P), intent(in) :: n

Integer to be converted.

integer(kind=I4P), intent(in), optional :: nz_pad

Number of zeros padding.

Return Value character

Returned string containing input number plus padding zeros.

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

Convert integer to string, prefixing with the right number of zeros.

Read more…

Arguments

TypeIntentOptionalAttributesName
integer(kind=I4P), intent(in) :: n

Integer to be converted.

integer(kind=I4P), intent(in), optional :: nz_pad

Number of zeros padding.

Return Value character

Returned string containing input number plus padding zeros.

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

Convert integer to string, prefixing with the right number of zeros.

Read more…

Arguments

TypeIntentOptionalAttributesName
integer(kind=I2P), intent(in) :: n

Integer to be converted.

integer(kind=I4P), intent(in), optional :: nz_pad

Number of zeros padding.

Return Value character

Returned string containing input number plus padding zeros.

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

Convert integer to string, prefixing with the right number of zeros.

Read more…

Arguments

TypeIntentOptionalAttributesName
integer(kind=I1P), intent(in) :: n

Integer to be converted.

integer(kind=I4P), intent(in), optional :: nz_pad

Number of zeros padding.

Return Value character

Returned string containing input number plus padding zeros.