WriteListElement Interface

public interface WriteListElement

Contents


Module Procedures

private subroutine WriteListElement_bool(key, value)

Write out a list element.

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: key

Some text to write.

logical, intent(in) :: value

A bool value to write.

private subroutine WriteListElement_float(key, value)

Write out a list element.

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: key

Some text to write.

real(kind=NTReal), intent(in) :: value

A float value to write.

private subroutine WriteListElement_int(key, value)

Write out a list element.

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: key

Some text to write.

integer, intent(in) :: value

An integer value to write.

private subroutine WriteListElement_string(key, value)

Write out a list element.

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: key

Some text to write.

character(len=*), intent(in) :: value

A text value to write.