Tails
Closed this issue · 0 comments
xcgpseud commented
tails :: [a] -> [[a]]
The tails function returns all final segments of the argument, longest first. For example,
>>> tails "abc"
["abc","bc","c",""]
Note that tails has the following strictness property:
tails _|_
=_|_ : _|_