Lines Matching refs:words
50 //! \brief Joins multiple words into a string.
52 //! Joins a list of words into a string, separating them using the provided
53 //! separator. Empty words are not omitted.
57 join(const T& words, const std::string& separator)
61 typename T::const_iterator iter = words.begin();
62 bool done = iter == words.end();
66 if (iter != words.end())
81 //! \brief Splits a string into words.
83 //! Splits the given string into multiple words, all separated by the
85 //! not condensed so that rejoining the words later on using the same