Returns true if the composition input string is populated and non-empty.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | text |
String representation of initial composition to test. |
logical function composition_string_is_set(text) character(len=*), intent(in) :: text !< The composition input text. composition_string_is_set = len_trim(adjustl(text)) > 0 end function composition_string_is_set