Return true if CLA has choices.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(command_line_argument), | intent(in) | :: | self |
CLA data. |
Check result.
pure function has_choices(self) !< Return true if CLA has choices. class(command_line_argument), intent(in) :: self !< CLA data. logical :: has_choices !< Check result. has_choices = allocated(self%choices) endfunction has_choices