Check if a key (os or compiler) can be used for platform setting
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | key |
elemental logical function is_platform_key(key) character(*), intent(in) :: key call validate_compiler_name(key, is_platform_key) if (is_platform_key) return call validate_os_name(key, is_platform_key) if (is_platform_key) return end function is_platform_key