tails package:copilot-libraries
Given a stream, produce an infinite list of streams dropping an
increasing number of elements of the given stream. For example, for a
given stream s, the expression tails s is equal to
[ drop 0 s, drop 1 s, drop 2 s, ...].