Returns a possibly empty seq of the items after the first. Calls seq on its
argument.
Source
(defnrest"Returns a possibly empty seq of the items after the first. Calls seq on its\n argument."[coll](if-not(nil?coll)(if(implements?ISeqcoll)(-restcoll)(let[s(seqcoll)](ifs(-rests)())))()))