tem_stringKeyValuePair_module Module


Uses

  • module~~tem_stringkeyvaluepair_module~~UsesGraph module~tem_stringkeyvaluepair_module tem_stringKeyValuePair_module module~env_module env_module module~tem_stringkeyvaluepair_module->module~env_module module~aotus_module aotus_module module~env_module->module~aotus_module module~flu_binding flu_binding module~env_module->module~flu_binding iso_fortran_env iso_fortran_env module~env_module->iso_fortran_env mpi mpi module~env_module->mpi

Used by

  • module~~tem_stringkeyvaluepair_module~~UsedByGraph module~tem_stringkeyvaluepair_module tem_stringKeyValuePair_module module~tem_varmap_module tem_varMap_module module~tem_varmap_module->module~tem_stringkeyvaluepair_module module~tem_bc_module tem_bc_module module~tem_bc_module->module~tem_stringkeyvaluepair_module module~tem_bc_module->module~tem_varmap_module module~tem_depend_module tem_depend_module module~tem_depend_module->module~tem_varmap_module module~tem_restart_module tem_restart_module module~tem_restart_module->module~tem_varmap_module module~hvs_output_module hvs_output_module module~hvs_output_module->module~tem_varmap_module module~hvs_output_module->module~tem_restart_module module~tem_tracking_module tem_tracking_module module~tem_tracking_module->module~tem_varmap_module module~tem_tracking_module->module~hvs_output_module module~tem_simcontrol_module tem_simControl_module module~tem_tracking_module->module~tem_simcontrol_module module~tem_operation_var_module tem_operation_var_module module~tem_operation_var_module->module~tem_varmap_module module~tem_convergence_module tem_convergence_module module~tem_convergence_module->module~tem_varmap_module module~tem_derived_module tem_derived_module module~tem_derived_module->module~tem_operation_var_module module~tem_general_module tem_general_module module~tem_general_module->module~tem_restart_module module~tem_general_module->module~tem_simcontrol_module module~tem_abortcriteria_module tem_abortCriteria_module module~tem_general_module->module~tem_abortcriteria_module module~tem_ini_condition_module tem_ini_condition_module module~tem_ini_condition_module->module~tem_depend_module program~tem_tracking_test tem_tracking_test program~tem_tracking_test->module~tem_tracking_module module~tem_simcontrol_module->module~tem_convergence_module module~tem_simcontrol_module->module~tem_abortcriteria_module module~tem_abortcriteria_module->module~tem_convergence_module program~tem_varsys_stfunvar_test tem_varSys_stfunVar_test program~tem_varsys_stfunvar_test->module~tem_derived_module program~tem_varsys_stfunvar_test->module~tem_general_module program~tem_sparta_test tem_sparta_test program~tem_sparta_test->module~tem_general_module program~tem_varsys_derivevar_test tem_varSys_deriveVar_test program~tem_varsys_derivevar_test->module~tem_general_module program~tem_varsys_statevar_test tem_varSys_stateVar_test program~tem_varsys_statevar_test->module~tem_general_module program~tem_variable_evaltype_test tem_variable_evaltype_test program~tem_variable_evaltype_test->module~tem_derived_module program~tem_variable_evaltype_test->module~tem_general_module program~tem_varsys_test tem_varSys_test program~tem_varsys_test->module~tem_general_module program~tem_spacetime_fun_test tem_spacetime_fun_test program~tem_spacetime_fun_test->module~tem_general_module program~tem_logical_opertor_test tem_logical_opertor_test program~tem_logical_opertor_test->module~tem_derived_module program~tem_logical_opertor_test->module~tem_general_module program~bin_search_test bin_search_test program~bin_search_test->module~tem_general_module program~tem_variable_extract_test tem_variable_extract_test program~tem_variable_extract_test->module~tem_derived_module program~tem_variable_extract_test->module~tem_general_module program~tem_variable_combine_test tem_variable_combine_Test program~tem_variable_combine_test->module~tem_derived_module program~tem_variable_combine_test->module~tem_general_module program~tem_face_test tem_face_test program~tem_face_test->module~tem_general_module program~tem_face_test~2 tem_face_test program~tem_face_test~2->module~tem_general_module module~tem_utestenv_module tem_utestEnv_module module~tem_utestenv_module->module~tem_general_module program~tem_face_test~3 tem_face_test program~tem_face_test~3->module~tem_general_module program~tem_varsys_opvar_test tem_varSys_opVar_test program~tem_varsys_opvar_test->module~tem_derived_module program~tem_varsys_opvar_test->module~tem_general_module

Contents


Interfaces

public interface init

initialize the dynamic array

public interface truncate

truncate the array, meaning cut off the trailing empty entries

public interface empty

empty the entries without changing arrays

public interface destroy

destroy the dynamic array

public interface placeat

insert an element at a given position

public interface append

append a value to the dynamic array and return its position.

private interface operator (==)

  • private pure function tem_stringKVP_equals(me, other) result(res)

    Indicates whether this instance and a specified object are equal.

    Arguments

    TypeIntentOptionalAttributesName
    type(tem_stringKeyValuePair_type), intent(in) :: me

    THe current instance.

    type(tem_stringKeyValuePair_type), intent(in) :: other

    The instance to compare with the current instance.

    Return Value logical

    .true. when both instances are equal, otherwise .false.

private interface operator (/=)

  • private pure function tem_stringKVP_notEquals(me, other) result(res)

    Indicates whether this instance and a specified object are equal.

    Arguments

    TypeIntentOptionalAttributesName
    type(tem_stringKeyValuePair_type), intent(in) :: me

    THe current instance.

    type(tem_stringKeyValuePair_type), intent(in) :: other

    The instance to compare with the current instance.

    Return Value logical

    .true. when both instances are equal, otherwise .false.

private interface expand

increase the size of the container for the array.


Derived Types

Defines a key/value pair of strings that can be set or retrieved.

Components

TypeVisibilityAttributesNameInitial
character(len=labellen), private :: key

The key in the key/value pair. It's length is limited to /ref labellen.

character(len=labellen), private :: value

The value in the key/value pair. It's length is limited to /ref labellen.

growing array type for type(tem_stringkeyvaluepair_type)

Components

TypeVisibilityAttributesNameInitial
integer, private :: nvals =0
integer, private :: containersize =0
type(tem_stringKeyValuePair_type), private, allocatable:: val(:)

Functions

private pure function tem_stringKVP_equals(me, other) result(res)

Indicates whether this instance and a specified object are equal.

Arguments

TypeIntentOptionalAttributesName
type(tem_stringKeyValuePair_type), intent(in) :: me

THe current instance.

type(tem_stringKeyValuePair_type), intent(in) :: other

The instance to compare with the current instance.

Return Value logical

.true. when both instances are equal, otherwise .false.

private pure function tem_stringKVP_notEquals(me, other) result(res)

Indicates whether this instance and a specified object are equal.

Arguments

TypeIntentOptionalAttributesName
type(tem_stringKeyValuePair_type), intent(in) :: me

THe current instance.

type(tem_stringKeyValuePair_type), intent(in) :: other

The instance to compare with the current instance.

Return Value logical

.true. when both instances are equal, otherwise .false.


Subroutines

private subroutine init_ga_stringkeyvaluepair(me, length)

Arguments

TypeIntentOptionalAttributesName
type(grw_stringkeyvaluepairarray_type), intent(out) :: me
integer, intent(in), optional :: length

private subroutine destroy_ga_stringkeyvaluepair(me)

Arguments

TypeIntentOptionalAttributesName
type(grw_stringkeyvaluepairarray_type), intent(inout) :: me

private subroutine truncate_ga_stringkeyvaluepair(me)

Arguments

TypeIntentOptionalAttributesName
type(grw_stringkeyvaluepairarray_type) :: me

private subroutine empty_ga_stringkeyvaluepair(me)

Arguments

TypeIntentOptionalAttributesName
type(grw_stringkeyvaluepairarray_type) :: me

private subroutine placeat_ga_stringkeyvaluepair(me, val, pos, length)

adds the value to a given position inside the growing array.

Read more…

Arguments

TypeIntentOptionalAttributesName
type(grw_stringkeyvaluepairarray_type) :: me
type(tem_stringKeyValuePair_type), intent(in) :: val
integer, intent(in) :: pos
integer, intent(in), optional :: length

optional length to expand the array

private subroutine placeat_ga_stringkeyvaluepair_vec(me, val, pos, length)

adds the values starting from a given position inside the growing array.

Read more…

Arguments

TypeIntentOptionalAttributesName
type(grw_stringkeyvaluepairarray_type) :: me
type(tem_stringKeyValuePair_type), intent(in) :: val(:)
integer, intent(in) :: pos
integer, intent(in), optional :: length

optional length to expand the array

private subroutine append_ga_stringkeyvaluepair(me, val, length)

Arguments

TypeIntentOptionalAttributesName
type(grw_stringkeyvaluepairarray_type) :: me
type(tem_stringKeyValuePair_type), intent(in) :: val
integer, intent(in), optional :: length

optional length to expand the array

private subroutine append_ga_stringkeyvaluepair_vec(me, val, length)

Arguments

TypeIntentOptionalAttributesName
type(grw_stringkeyvaluepairarray_type) :: me
type(tem_stringKeyValuePair_type), intent(in) :: val(:)
integer, intent(in), optional :: length

optional length to expand the array

private subroutine expand_ga_stringkeyvaluepair(me, pos, length)

Arguments

TypeIntentOptionalAttributesName
type(grw_stringkeyvaluepairarray_type) :: me
integer, intent(in), optional :: pos
integer, intent(in), optional :: length

optional length to expand the array