new_keyval Subroutine

public subroutine new_keyval(self)

Constructor to create a new TOML key-value pair

Arguments

Type IntentOptional Attributes Name
type(toml_keyval), intent(out) :: self

Instance of the TOML key-value pair


Source Code

subroutine new_keyval(self)

   !> Instance of the TOML key-value pair
   type(toml_keyval), intent(out) :: self

   associate(self => self); end associate

end subroutine new_keyval