words -package
words breaks a string up into a list of words, which were delimited by white space.
words breaks a ByteString up into a list of words, which were delimited by Chars representing white space.
words breaks a ByteString up into a list of words, which were delimited by Chars representing white space. And
> tokens isSpace = words
O(n) Breaks a Text up into a list of words, delimited by Chars representing white space.
unwords is an inverse operation to words. It joins words with separating spaces.
O(n) Joins words using single space characters.