bstr Interface

public interface bstr

Convert number (real and integer) to bit-string (number to bit-string type casting).

Calls

interface~~bstr~~CallsGraph interface~bstr bstr proc~bstr_i1p bstr_I1P interface~bstr->proc~bstr_i1p proc~bstr_i2p bstr_I2P interface~bstr->proc~bstr_i2p proc~bstr_i4p bstr_I4P interface~bstr->proc~bstr_i4p proc~bstr_i8p bstr_I8P interface~bstr->proc~bstr_i8p proc~bstr_r4p bstr_R4P interface~bstr->proc~bstr_r4p proc~bstr_r8p bstr_R8P interface~bstr->proc~bstr_r8p

Called by

interface~~bstr~~CalledByGraph interface~bstr bstr program~volatile_doctest~103 volatile_doctest program~volatile_doctest~103->interface~bstr program~volatile_doctest~105 volatile_doctest program~volatile_doctest~105->interface~bstr program~volatile_doctest~178 volatile_doctest program~volatile_doctest~178->interface~bstr program~volatile_doctest~201 volatile_doctest program~volatile_doctest~201->interface~bstr program~volatile_doctest~49 volatile_doctest program~volatile_doctest~49->interface~bstr program~volatile_doctest~62 volatile_doctest program~volatile_doctest~62->interface~bstr program~volatile_doctest~84 volatile_doctest program~volatile_doctest~84->interface~bstr

Module Procedures

private elemental function bstr_R8P(n) result(bstr)

Convert real to string of bits.

Read more…

Arguments

Type IntentOptional Attributes Name
real(kind=R8P), intent(in) :: n

Real to be converted.

Return Value character(len=64)

Returned bit-string containing input number.

private elemental function bstr_R4P(n) result(bstr)

Convert real to string of bits.

Read more…

Arguments

Type IntentOptional Attributes Name
real(kind=R4P), intent(in) :: n

Real to be converted.

Return Value character(len=32)

Returned bit-string containing input number.

private elemental function bstr_I8P(n) result(bstr)

Convert integer to string of bits.

Read more…

Arguments

Type IntentOptional Attributes Name
integer(kind=I8P), intent(in) :: n

Real to be converted.

Return Value character(len=64)

Returned bit-string containing input number.

private elemental function bstr_I4P(n) result(bstr)

Convert integer to string of bits.

Read more…

Arguments

Type IntentOptional Attributes Name
integer(kind=I4P), intent(in) :: n

Real to be converted.

Return Value character(len=32)

Returned bit-string containing input number.

private elemental function bstr_I2P(n) result(bstr)

Convert integer to string of bits.

Read more…

Arguments

Type IntentOptional Attributes Name
integer(kind=I2P), intent(in) :: n

Real to be converted.

Return Value character(len=16)

Returned bit-string containing input number.

private elemental function bstr_I1P(n) result(bstr)

Convert integer to string of bits.

Read more…

Arguments

Type IntentOptional Attributes Name
integer(kind=I1P), intent(in) :: n

Real to be converted.

Return Value character(len=8)

Returned bit-string containing input number.