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~115 volatile_doctest program~volatile_doctest~115->interface~bstr program~volatile_doctest~146 volatile_doctest program~volatile_doctest~146->interface~bstr program~volatile_doctest~181 volatile_doctest program~volatile_doctest~181->interface~bstr program~volatile_doctest~25 volatile_doctest program~volatile_doctest~25->interface~bstr program~volatile_doctest~52 volatile_doctest program~volatile_doctest~52->interface~bstr program~volatile_doctest~65 volatile_doctest program~volatile_doctest~65->interface~bstr program~volatile_doctest~78 volatile_doctest program~volatile_doctest~78->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.