Check local schema for allowed entries
Supported metapackages
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | key |
Instance of the TOML data structure |
logical function is_meta_package(key) !> Instance of the TOML data structure character(*), intent(in) :: key select case (key) !> Supported metapackages case ("openmp","stdlib","mpi","minpack","hdf5") is_meta_package = .true. case default is_meta_package = .false. end select end function is_meta_package