words -package:hedgehog -package:universum -package:ListLike package:rio is:exact

words breaks a string up into a list of words, which were delimited by white space.
>>> words "Lorem ipsum\ndolor"
["Lorem","ipsum","dolor"]
O(n) Breaks a Text up into a list of words, delimited by Chars representing white space.