Skip to content

Commit

Permalink
StringUtils: Added note to StringsConcat about StringJoin.
Browse files Browse the repository at this point in the history
  • Loading branch information
madmaxoft committed Jan 7, 2020
1 parent 583fd0a commit e234fbd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/StringUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ The order of items doesn't change, only the duplicates are removed.
If a_Strings1 contains duplicates, the result will still contain those duplicates. */
extern AStringVector MergeStringVectors(const AStringVector & a_Strings1, const AStringVector & a_Strings2);

/** Concatenates the specified strings into a single string, separated by the specified separator. */
/** Concatenates the specified strings into a single string, separated by the specified separator character.
Use StringJoin() if you need multiple separator characters. */
extern AString StringsConcat(const AStringVector & a_Strings, char a_Separator);

/** Converts a string into a float. Returns false if the conversion fails. */
Expand Down

0 comments on commit e234fbd

Please sign in to comment.