This commit is contained in:
Justin Ethier 2016-12-01 18:35:10 -05:00
parent 8e805295b9
commit e722d520d4
4 changed files with 27 additions and 27 deletions

View file

@ -9,7 +9,7 @@ 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.
- Constructors: ## Constructors
[`xcons`](#xcons) [`xcons`](#xcons)
[`make-list`](#make-list) [`make-list`](#make-list)
[`list-tabulate`](#list-tabulate) [`list-tabulate`](#list-tabulate)
@ -18,7 +18,7 @@ See the [SRFI document](http://srfi.schemers.org/srfi-1/srfi-1.html) for more in
[`circular-list`](#circular-list-1) [`circular-list`](#circular-list-1)
[`iota`](#iota) [`iota`](#iota)
- Predicates ## Predicates
[`proper-list?`](#proper-list) [`proper-list?`](#proper-list)
[`circular-list?`](#circular-list) [`circular-list?`](#circular-list)
[`dotted-list?`](#dotted-list) [`dotted-list?`](#dotted-list)
@ -26,7 +26,7 @@ See the [SRFI document](http://srfi.schemers.org/srfi-1/srfi-1.html) for more in
[`null-list?`](#null-list) [`null-list?`](#null-list)
[`list=`](#list=) [`list=`](#list=)
- Selectors ## Selectors
[`first`](#first) [`first`](#first)
[`second`](#second) [`second`](#second)
[`third`](#third) [`third`](#third)
@ -49,7 +49,7 @@ See the [SRFI document](http://srfi.schemers.org/srfi-1/srfi-1.html) for more in
[`last`](#last) [`last`](#last)
[`last-pair`](#last-pair) [`last-pair`](#last-pair)
- Miscellaneous: length, append, concatenate, reverse, zip, and count ## Miscellaneous: length, append, concatenate, reverse, zip, and count
[`length+`](#length) [`length+`](#length)
[`zip`](#zip) [`zip`](#zip)
[`unzip1`](#unzip1) [`unzip1`](#unzip1)
@ -65,7 +65,7 @@ See the [SRFI document](http://srfi.schemers.org/srfi-1/srfi-1.html) for more in
[`concatenate!`](#concatenate-1) [`concatenate!`](#concatenate-1)
[`reverse!`](#reverse) [`reverse!`](#reverse)
- Fold, unfold, and map ## Fold, unfold, and map
[`unfold`](#unfold) [`unfold`](#unfold)
[`fold`](#fold) [`fold`](#fold)
[`pair-fold`](#pair-fold) [`pair-fold`](#pair-fold)
@ -81,7 +81,7 @@ See the [SRFI document](http://srfi.schemers.org/srfi-1/srfi-1.html) for more in
[`filter-map`](#filter-map) [`filter-map`](#filter-map)
[`map-in-order`](#map-in-order) [`map-in-order`](#map-in-order)
- Filtering and partitioning ## Filtering and partitioning
[`filter`](#filter) [`filter`](#filter)
[`partition`](#partition) [`partition`](#partition)
[`remove`](#remove) [`remove`](#remove)
@ -89,7 +89,7 @@ See the [SRFI document](http://srfi.schemers.org/srfi-1/srfi-1.html) for more in
[`partition!`](#partition-1) [`partition!`](#partition-1)
[`remove!`](#remove-1) [`remove!`](#remove-1)
- Searching ## Searching
[`find`](#find) [`find`](#find)
[`find-tail`](#find-tail) [`find-tail`](#find-tail)
[`any`](#any) [`any`](#any)
@ -103,19 +103,19 @@ See the [SRFI document](http://srfi.schemers.org/srfi-1/srfi-1.html) for more in
[`span!`](#span-1) [`span!`](#span-1)
[`break!`](#break-1) [`break!`](#break-1)
- Deleting ## Deleting
[`delete`](#delete) [`delete`](#delete)
[`delete!`](#delete-1) [`delete!`](#delete-1)
[`delete-duplicates`](#delete-duplicates) [`delete-duplicates`](#delete-duplicates)
[`delete-duplicates!`](#delete-duplicates-1) [`delete-duplicates!`](#delete-duplicates-1)
- Association lists ## Association lists
[`alist-cons`](#alist-cons) [`alist-cons`](#alist-cons)
[`alist-copy`](#alist-copy) [`alist-copy`](#alist-copy)
[`alist-delete`](#alist-delete) [`alist-delete`](#alist-delete)
[`alist-delete!`](#alist-delete-1) [`alist-delete!`](#alist-delete-1)
- Set operations on lists ## Set operations on lists
[`lset<=`](#lset) [`lset<=`](#lset)
[`lset=`](#lset-1) [`lset=`](#lset-1)
[`lset-adjoin`](#lset-adjoin) [`lset-adjoin`](#lset-adjoin)

View file

@ -9,26 +9,26 @@ The `(srfi 106)` library provides a basic socket interface.
See the [SRFI document](http://srfi.schemers.org/srfi-106/srfi-106.html) for more information. See the [SRFI document](http://srfi.schemers.org/srfi-106/srfi-106.html) for more information.
- Constructors and predicate ## Constructors and predicate
[`make-client-socket`](#make-client-socket) [`make-client-socket`](#make-client-socket)
[`make-server-socket`](#make-server-socket) [`make-server-socket`](#make-server-socket)
[`socket?`](#socket) [`socket?`](#socket)
- Socket operations ## Socket operations
[`socket-accept`](#socket-accept) [`socket-accept`](#socket-accept)
[`socket-send`](#socket-send) [`socket-send`](#socket-send)
[`socket-recv`](#socket-recv) [`socket-recv`](#socket-recv)
[`socket-shutdown`](#socket-shutdown) [`socket-shutdown`](#socket-shutdown)
[`socket-close`](#socket-close) [`socket-close`](#socket-close)
- Port conversion ## Port conversion
[`socket-input-port`](#socket-input-port) [`socket-input-port`](#socket-input-port)
[`socket-output-port`](#socket-output-port) [`socket-output-port`](#socket-output-port)
- Control feature ## Control feature
[`call-with-socket`](#call-with-socket) [`call-with-socket`](#call-with-socket)
- Flag operations ## Flag operations
[`address-family`](#address-family) [`address-family`](#address-family)
[`address-info`](#address-info) [`address-info`](#address-info)
[`socket-domain`](#socket-domain) [`socket-domain`](#socket-domain)
@ -38,7 +38,7 @@ See the [SRFI document](http://srfi.schemers.org/srfi-106/srfi-106.html) for mor
[`socket-merge-flags`](#socket-merge-flags) [`socket-merge-flags`](#socket-merge-flags)
[`socket-purge-flags`](#socket-purge-flags) [`socket-purge-flags`](#socket-purge-flags)
- Constant values ## Constant values
[`*af-unspec*`](#af-unspec) [`*af-unspec*`](#af-unspec)
[`*af-inet*`](#af-inet) [`*af-inet*`](#af-inet)
[`*af-inet6*`](#af-inet6) [`*af-inet6*`](#af-inet6)

View file

@ -9,24 +9,24 @@ The `(srfi 117)` library defines list queues; mutable ordered collections that c
See the [SRFI document](http://srfi.schemers.org/srfi-117/srfi-117.html) for more information. See the [SRFI document](http://srfi.schemers.org/srfi-117/srfi-117.html) for more information.
- Constructors ## Constructors
[`make-list-queue`](#make-list-queue) [`make-list-queue`](#make-list-queue)
[`list-queue`](#list-queue) [`list-queue`](#list-queue)
[`list-queue-copy`](#list-queue-copy) [`list-queue-copy`](#list-queue-copy)
[`list-queue-unfold`](#list-queue-unfold) [`list-queue-unfold`](#list-queue-unfold)
[`list-queue-unfold-right`](#list-queue-unfold-right) [`list-queue-unfold-right`](#list-queue-unfold-right)
- Predicates ## Predicates
[`list-queue?`](#list-queue-1) [`list-queue?`](#list-queue-1)
[`list-queue-empty?`](#list-queue-empty) [`list-queue-empty?`](#list-queue-empty)
- Accessors ## Accessors
[`list-queue-front`](#list-queue-front) [`list-queue-front`](#list-queue-front)
[`list-queue-back`](#list-queue-back) [`list-queue-back`](#list-queue-back)
[`list-queue-list`](#list-queue-list) [`list-queue-list`](#list-queue-list)
[`list-queue-first-last`](#list-queue-first-last) [`list-queue-first-last`](#list-queue-first-last)
- Mutators ## Mutators
[`list-queue-add-front!`](#list-queue-add-front) [`list-queue-add-front!`](#list-queue-add-front)
[`list-queue-add-back!`](#list-queue-add-back) [`list-queue-add-back!`](#list-queue-add-back)
[`list-queue-remove-front!`](#list-queue-remove-front) [`list-queue-remove-front!`](#list-queue-remove-front)
@ -40,7 +40,7 @@ See the [SRFI document](http://srfi.schemers.org/srfi-117/srfi-117.html) for mor
[`list-queue-append!`](#list-queue-append-1) [`list-queue-append!`](#list-queue-append-1)
[`list-queue-concatenate`](#list-queue-concatenate) [`list-queue-concatenate`](#list-queue-concatenate)
- Mapping ## Mapping
[`list-queue-map`](#list-queue-map) [`list-queue-map`](#list-queue-map)
[`list-queue-map!`](#list-queue-map-1) [`list-queue-map!`](#list-queue-map-1)
[`list-queue-for-each`](#list-queue-for-each) [`list-queue-for-each`](#list-queue-for-each)

View file

@ -9,25 +9,25 @@ The `(srfi 133)` provides a vector library.
See the [SRFI document](http://srfi.schemers.org/srfi-133/srfi-133.html) for more information. See the [SRFI document](http://srfi.schemers.org/srfi-133/srfi-133.html) for more information.
- Constructors ## Constructors
[`vector-unfold`](#vector-unfold) [`vector-unfold`](#vector-unfold)
[`vector-unfold-right`](#vector-unfold-right) [`vector-unfold-right`](#vector-unfold-right)
[`vector-reverse-copy`](#vector-reverse-copy) [`vector-reverse-copy`](#vector-reverse-copy)
[`vector-concatenate`](#vector-concatenate) [`vector-concatenate`](#vector-concatenate)
[`vector-append-subvectors`](#vector-append-subvectors) [`vector-append-subvectors`](#vector-append-subvectors)
- Predicates ## Predicates
[`vector-empty?`](#vector-empty) [`vector-empty?`](#vector-empty)
[`vector=`](#vector) [`vector=`](#vector)
- Iteration ## Iteration
[`vector-fold`](#vector-fold) [`vector-fold`](#vector-fold)
[`vector-fold-right`](#vector-fold-right) [`vector-fold-right`](#vector-fold-right)
[`vector-map!`](#vector-map) [`vector-map!`](#vector-map)
[`vector-count`](#vector-count) [`vector-count`](#vector-count)
[`vector-cumulate`](#vector-cumulate) [`vector-cumulate`](#vector-cumulate)
- Searching ## Searching
[`vector-index`](#vector-index) [`vector-index`](#vector-index)
[`vector-index-right`](#vector-index-right) [`vector-index-right`](#vector-index-right)
[`vector-skip`](#vector-skip) [`vector-skip`](#vector-skip)
@ -37,14 +37,14 @@ See the [SRFI document](http://srfi.schemers.org/srfi-133/srfi-133.html) for mor
[`vector-every`](#vector-every) [`vector-every`](#vector-every)
[`vector-partition`](#vector-partition) [`vector-partition`](#vector-partition)
- Mutators ## Mutators
[`vector-swap!`](#vector-swap) [`vector-swap!`](#vector-swap)
[`vector-reverse!`](#vector-reverse) [`vector-reverse!`](#vector-reverse)
[`vector-reverse-copy!`](#vector-reverse-copy) [`vector-reverse-copy!`](#vector-reverse-copy)
[`vector-unfold!`](#vector-unfold) [`vector-unfold!`](#vector-unfold)
[`vector-unfold-right!`](#vector-unfold-right) [`vector-unfold-right!`](#vector-unfold-right)
- Conversion ## Conversion
[`reverse-vector->list`](#reverse-vector-list) [`reverse-vector->list`](#reverse-vector-list)
[`reverse-list->vector`](#reverse-list-vector) [`reverse-list->vector`](#reverse-list-vector)