Constructor to create a new TOML array and allocate the internal storage
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(toml_array), | intent(out) | :: | self |
Instance of the TOML array |
subroutine new_array(self) !> Instance of the TOML array type(toml_array), intent(out) :: self call new_list_structure(self%list) end subroutine new_array