strings returns a pointer to an array of strings that are in the set. Deallocate this array when done with it.
CHARACTER(LEN=FTDICT_KWD_STRING_LENGTH) ,DIMENSION(:), POINTER :: s
s => set % strings
... do something ...
DEALLOCATE(s)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(FTStringSet) | :: | self |