>>> Stream.fold Fold.toList $ Unicode.unwords $ Stream.fromList ["unwords", "this", "string"] "unwords this string"
unwords = S.unwords A.readNote that, in general
unwords . words /= id
>>> unwords = Stream.unfoldEachSepBy ' ' >>> unwords = Stream.unfoldEachSepBySeq " " Unfold.fromListPre-release