Constructor to create a new TOML table and allocate the internal storage
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(toml_table), | intent(out) | :: | self |
Instance of the TOML table |
subroutine new_table(self) !> Instance of the TOML table type(toml_table), intent(out) :: self call new_map_structure(self%map) end subroutine new_table