set_to_string Function

private pure function set_to_string(set) result(string)

Implementation to transfer a set of characters to a string representing the set.

This function is internal and not part of the public API.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: set(:)

Return Value character(len=size)


Called by

proc~~set_to_string~~CalledByGraph proc~set_to_string set_to_string proc~chomp_set_char_char chomp_set_char_char proc~chomp_set_char_char->proc~set_to_string interface~chomp chomp interface~chomp->proc~chomp_set_char_char proc~chomp_set_string_char chomp_set_string_char interface~chomp->proc~chomp_set_string_char proc~chomp_substring_char_string chomp_substring_char_string interface~chomp->proc~chomp_substring_char_string proc~chomp_substring_string_char chomp_substring_string_char interface~chomp->proc~chomp_substring_string_char proc~chomp_substring_string_string chomp_substring_string_string interface~chomp->proc~chomp_substring_string_string proc~chomp_set_string_char->interface~chomp proc~chomp_substring_char_string->interface~chomp proc~chomp_substring_string_char->interface~chomp proc~chomp_substring_string_string->interface~chomp

Source Code

   pure function set_to_string(set) result(string)
      character(len=1), intent(in) :: set(:)
      character(len=size(set)) :: string

      string = transfer(set, string)
   end function set_to_string