Returns a seq of the items after the first. Calls seq on its
argument. If there are no more items, returns nil
Source
(defnnext"Returns a seq of the items after the first. Calls seq on its\n argument. If there are no more items, returns nil"[coll](when-not(nil?coll)(if(implements?INextcoll)(-nextcoll)(seq(restcoll)))))