List library compatible with SRFI 1.
(append-reverse rev-head tail)
(append-reverse! rev-head tail)
(count pred list1 . lists)
(unfold-right p f g seed . maybe-tail)
(unfold p f g seed . maybe-tail-gen)
(fold kons knil lis1 . lists)
(fold-right kons knil lis1 . lists)
(pair-fold-right f zero lis1 . lists)
(pair-fold f zero lis1 . lists)
(reduce-right f ridentity lis)
(append-map f lis1 . lists)
(append-map! f lis1 . lists)
(really-append-map who appender f lis1 lists)
(pair-for-each proc lis1 . lists)
(filter-map f lis1 . lists)
(map-in-order f lis1 . lists)
(delete-duplicates! lis maybe-=)
(alist-delete! key alist)
(every pred lis1 . lists)
(list-index pred lis1 . lists)
(lset-adjoin = lis . elts)
(lset-intersection = lis1 . lists)
(lset-intersection! = lis1 . lists)
(lset-difference = lis1 . lists)
(lset-difference! = lis1 . lists)
(lset-diff+intersection = lis1 . lists)
(lset-diff+intersection! = lis1 . lists)