composition_string_is_set Function

public function composition_string_is_set(text)

Returns true if the composition input string is populated and non-empty.

Arguments

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

String representation of initial composition to test.

Return Value logical


Source Code

   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