strings Function

public function strings(self) result(s)

strings returns a pointer to an array of strings that are in the set. Deallocate this array when done with it.

Usage:

  CHARACTER(LEN=FTDICT_KWD_STRING_LENGTH) ,DIMENSION(:), POINTER :: s
  s => set % strings
  ... do something ...
  DEALLOCATE(s)

Type Bound

FTStringSet

Arguments

Type IntentOptional Attributes Name
class(FTStringSet) :: self

Return Value character(len=FTDICT_KWD_STRING_LENGTH), DIMENSION(:), POINTER


Calls

proc~~strings~~CallsGraph proc~strings FTStringSet%strings proc~allkeys FTDictionary%AllKeys proc~strings->proc~allkeys key key proc~allkeys->key

Called by

proc~~strings~~CalledByGraph proc~strings FTStringSet%strings proc~intersectionwithset FTStringSet%intersectionWithSet proc~intersectionwithset->proc~strings proc~setfromdifference FTStringSet%setFromDifference proc~setfromdifference->proc~strings proc~unionwithset FTStringSet%unionWithSet proc~unionwithset->proc~strings