Get rid of extra spaces

This commit is contained in:
Justin Ethier 2016-09-30 17:54:58 -04:00
parent 1c189090be
commit d7a0eab048

View file

@ -4,107 +4,107 @@ The `(srfi 1)` provides a coherent and comprehensive set of list-processing proc
See the [SRFI document](http://srfi.schemers.org/srfi-1/srfi-1.html) for more information. See the [SRFI document](http://srfi.schemers.org/srfi-1/srfi-1.html) for more information.
- [`xcons `}(#xcons) - [`xcons`}(#xcons)
- [`tree-copy `}(#tree-copy) - [`tree-copy`}(#tree-copy)
- [`make-list `}(#make-list) - [`make-list`}(#make-list)
- [`list-tabulate `}(#list-tabulate) - [`list-tabulate`}(#list-tabulate)
- [`cons* `}(#cons) - [`cons*`}(#cons)
- [`list-copy `}(#list-copy) - [`list-copy`}(#list-copy)
- [`proper-list? `}(#proper-list) - [`proper-list?`}(#proper-list)
- [`circular-list? `}(#circular-list) - [`circular-list?`}(#circular-list)
- [`dotted-list? `}(#dotted-list) - [`dotted-list?`}(#dotted-list)
- [`not-pair? `}(#not-pair) - [`not-pair?`}(#not-pair)
- [`null-list? `}(#null-list) - [`null-list?`}(#null-list)
- [`list= `}(#list=) - [`list=`}(#list=)
- [`circular-list `}(#circular-list) - [`circular-list`}(#circular-list)
- [`length+ `}(#length) - [`length+`}(#length)
- [`iota `}(#iota) - [`iota`}(#iota)
- [`first `}(#first) - [`first`}(#first)
- [`second `}(#second) - [`second`}(#second)
- [`third `}(#third) - [`third`}(#third)
- [`fourth `}(#fourth) - [`fourth`}(#fourth)
- [`fifth `}(#fifth) - [`fifth`}(#fifth)
- [`sixth `}(#sixth) - [`sixth`}(#sixth)
- [`seventh `}(#seventh) - [`seventh`}(#seventh)
- [`eighth `}(#eighth) - [`eighth`}(#eighth)
- [`ninth `}(#ninth) - [`ninth`}(#ninth)
- [`tenth `}(#tenth) - [`tenth`}(#tenth)
- [`car+cdr `}(#carcdr) - [`car+cdr`}(#carcdr)
- [`take `}(#take) - [`take`}(#take)
- [`drop `}(#drop) - [`drop`}(#drop)
- [`take-right `}(#take-right) - [`take-right`}(#take-right)
- [`drop-right `}(#drop-right) - [`drop-right`}(#drop-right)
- [`take! `}(#take-1) - [`take!`}(#take-1)
- [`drop-right! `}(#drop-right-1) - [`drop-right!`}(#drop-right-1)
- [`split-at `}(#split-at) - [`split-at`}(#split-at)
- [`split-at! `}(#split-at-1) - [`split-at!`}(#split-at-1)
- [`last `}(#last) - [`last`}(#last)
- [`last-pair `}(#last-pair) - [`last-pair`}(#last-pair)
- [`zip `}(#zip) - [`zip`}(#zip)
- [`unzip1 `}(#unzip1) - [`unzip1`}(#unzip1)
- [`unzip2 `}(#unzip2) - [`unzip2`}(#unzip2)
- [`unzip3 `}(#unzip3) - [`unzip3`}(#unzip3)
- [`unzip4 `}(#unzip4) - [`unzip4`}(#unzip4)
- [`unzip5 `}(#unzip5) - [`unzip5`}(#unzip5)
- [`count `}(#count) - [`count`}(#count)
- [`append! `}(#append) - [`append!`}(#append)
- [`append-reverse `}(#append-reverse) - [`append-reverse`}(#append-reverse)
- [`append-reverse! `}(#append-reverse-1) - [`append-reverse!`}(#append-reverse-1)
- [`concatenate `}(#concatenate) - [`concatenate`}(#concatenate)
- [`concatenate! `}(#concatenate-1) - [`concatenate!`}(#concatenate-1)
- [`unfold `}(#unfold) - [`unfold`}(#unfold)
- [`fold `}(#fold) - [`fold`}(#fold)
- [`pair-fold `}(#pair-fold) - [`pair-fold`}(#pair-fold)
- [`reduce `}(#reduce) - [`reduce`}(#reduce)
- [`unfold-right `}(#unfold-right) - [`unfold-right`}(#unfold-right)
- [`fold-right `}(#fold-right) - [`fold-right`}(#fold-right)
- [`pair-fold-right `}(#pair-fold-right) - [`pair-fold-right`}(#pair-fold-right)
- [`reduce-right `}(#reduce-right) - [`reduce-right`}(#reduce-right)
- [`append-map `}(#append-map) - [`append-map`}(#append-map)
- [`append-map! `}(#append-map-1) - [`append-map!`}(#append-map-1)
- [`map! `}(#map) - [`map!`}(#map)
- [`pair-for-each `}(#pair-for-each) - [`pair-for-each`}(#pair-for-each)
- [`filter-map `}(#filter-map) - [`filter-map`}(#filter-map)
- [`map-in-order `}(#map-in-order) - [`map-in-order`}(#map-in-order)
- [`filter `}(#filter) - [`filter`}(#filter)
- [`partition `}(#partition) - [`partition`}(#partition)
- [`remove `}(#remove) - [`remove`}(#remove)
- [`filter! `}(#filter-1) - [`filter!`}(#filter-1)
- [`partition! `}(#partition-1) - [`partition!`}(#partition-1)
- [`remove! `}(#remove-1) - [`remove!`}(#remove-1)
- [`find `}(#find) - [`find`}(#find)
- [`find-tail `}(#find-tail) - [`find-tail`}(#find-tail)
- [`any `}(#any) - [`any`}(#any)
- [`every `}(#every) - [`every`}(#every)
- [`list-index `}(#list-index) - [`list-index`}(#list-index)
- [`take-while `}(#take-while) - [`take-while`}(#take-while)
- [`drop-while `}(#drop-while) - [`drop-while`}(#drop-while)
- [`take-while! `}(#take-while-1) - [`take-while!`}(#take-while-1)
- [`span `}(#span) - [`span`}(#span)
- [`break `}(#break) - [`break`}(#break)
- [`span! `}(#span-1) - [`span!`}(#span-1)
- [`break! `}(#break-1) - [`break!`}(#break-1)
- [`delete `}(#delete) - [`delete`}(#delete)
- [`delete! `}(#delete-1) - [`delete!`}(#delete-1)
- [`alist-cons `}(#alist-cons) - [`alist-cons`}(#alist-cons)
- [`alist-copy `}(#alist-copy) - [`alist-copy`}(#alist-copy)
- [`delete-duplicates `}(#delete-duplicates) - [`delete-duplicates`}(#delete-duplicates)
- [`delete-duplicates! `}(#delete-duplicates-1) - [`delete-duplicates!`}(#delete-duplicates-1)
- [`alist-delete `}(#alist-delete) - [`alist-delete`}(#alist-delete)
- [`alist-delete! `}(#alist-delete-1) - [`alist-delete!`}(#alist-delete-1)
- [`reverse! `}(#reverse) - [`reverse!`}(#reverse)
- [`lset<= `}(#lset) - [`lset<=`}(#lset)
- [`lset= `}(#lset-1) - [`lset=`}(#lset-1)
- [`lset-adjoin `}(#lset-adjoin) - [`lset-adjoin`}(#lset-adjoin)
- [`lset-union `}(#lset-union) - [`lset-union`}(#lset-union)
- [`lset-intersection `}(#lset-intersection) - [`lset-intersection`}(#lset-intersection)
- [`lset-difference `}(#lset-difference) - [`lset-difference`}(#lset-difference)
- [`lset-xor `}(#lset-xor) - [`lset-xor`}(#lset-xor)
- [`lset-diff+intersection`}(#lset-diffintersection) - [`lset-diff+intersection`}(#lset-diffintersection)
- [`lset-union! `}(#lset-union) - [`lset-union!`}(#lset-union)
- [`lset-intersection! `}(#lset-intersection-1) - [`lset-intersection!`}(#lset-intersection-1)
- [`lset-difference! `}(#lset-difference-1) - [`lset-difference!`}(#lset-difference-1)
- [`lset-xor! `}(#lset-xor-1) - [`lset-xor!`}(#lset-xor-1)
#xcons #xcons
#tree-copy #tree-copy