set Interface

public interface set

Contents


Module Procedures

private subroutine set_char_key(key, value)

Sets the contents of the key from a CHARACTER string Arguments: key - the output key value - the input CHARACTER string

Arguments

TypeIntentOptionalAttributesName
type(key_type), intent(out) :: key
character, intent(in) :: value

private subroutine set_int8_key(key, value)

Sets the contents of the key from an INTEGER(INT8) vector Arguments: key - the output key value - the input INTEGER(INT8) vector

Arguments

TypeIntentOptionalAttributesName
type(key_type), intent(out) :: key
integer(kind=int8), intent(in) :: value(:)

private subroutine set_other(other, value)

Sets the contents of the other data from a CLASS() variable Arguments: other - the output other data value - the input CLASS() variable

Arguments

TypeIntentOptionalAttributesName
type(other_type), intent(out) :: other
class(*), intent(in) :: value