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_i1p strz_I1P interface~strz->proc~strz_i1p proc~strz_i2p strz_I2P interface~strz->proc~strz_i2p proc~strz_i4p strz_I4P interface~strz->proc~strz_i4p proc~strz_i8p strz_I8P interface~strz->proc~strz_i8p

Called by

interface~~strz~~CalledByGraph interface~strz strz program~volatile_doctest~111 volatile_doctest program~volatile_doctest~111->interface~strz program~volatile_doctest~137 volatile_doctest program~volatile_doctest~137->interface~strz program~volatile_doctest~143 volatile_doctest program~volatile_doctest~143->interface~strz program~volatile_doctest~177 volatile_doctest program~volatile_doctest~177->interface~strz program~volatile_doctest~45 volatile_doctest program~volatile_doctest~45->interface~strz program~volatile_doctest~51 volatile_doctest program~volatile_doctest~51->interface~strz program~volatile_doctest~55 volatile_doctest program~volatile_doctest~55->interface~strz program~volatile_doctest~59 volatile_doctest program~volatile_doctest~59->interface~strz

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

Type IntentOptional Attributes Name
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(len=DI8P)

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

Type IntentOptional Attributes Name
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(len=DI4P)

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

Type IntentOptional Attributes Name
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(len=DI2P)

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

Type IntentOptional Attributes Name
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(len=DI1P)

Returned string containing input number plus padding zeros.