is_meta_package Function

public function is_meta_package(key)

Check local schema for allowed entries

Supported metapackages

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: key

Instance of the TOML data structure

Return Value logical


Source Code

    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")
                is_meta_package = .true.

            case default
                is_meta_package = .false.

        end select

    end function is_meta_package