Implementation to transfer a set of characters to a string representing the set.
This function is internal and not part of the public API.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=1), | intent(in) | :: | set(:) |
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