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.
- Constructors:
## Constructors
[`xcons`](#xcons)
[`make-list`](#make-list)
[`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)
[`iota`](#iota)
- Predicates
## Predicates
[`proper-list?`](#proper-list)
[`circular-list?`](#circular-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)
[`list=`](#list=)
- Selectors
## Selectors
[`first`](#first)
[`second`](#second)
[`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-pair`](#last-pair)
- Miscellaneous: length, append, concatenate, reverse, zip, and count
## Miscellaneous: length, append, concatenate, reverse, zip, and count
[`length+`](#length)
[`zip`](#zip)
[`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)
[`reverse!`](#reverse)
- Fold, unfold, and map
## Fold, unfold, and map
[`unfold`](#unfold)
[`fold`](#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)
[`map-in-order`](#map-in-order)
- Filtering and partitioning
## Filtering and partitioning
[`filter`](#filter)
[`partition`](#partition)
[`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)
[`remove!`](#remove-1)
- Searching
## Searching
[`find`](#find)
[`find-tail`](#find-tail)
[`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)
[`break!`](#break-1)
- Deleting
## Deleting
[`delete`](#delete)
[`delete!`](#delete-1)
[`delete-duplicates`](#delete-duplicates)
[`delete-duplicates!`](#delete-duplicates-1)
- Association lists
## Association lists
[`alist-cons`](#alist-cons)
[`alist-copy`](#alist-copy)
[`alist-delete`](#alist-delete)
[`alist-delete!`](#alist-delete-1)
- Set operations on lists
## Set operations on lists
[`lset<=`](#lset)
[`lset=`](#lset-1)
[`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.
- Constructors and predicate
## Constructors and predicate
[`make-client-socket`](#make-client-socket)
[`make-server-socket`](#make-server-socket)
[`socket?`](#socket)
- Socket operations
## Socket operations
[`socket-accept`](#socket-accept)
[`socket-send`](#socket-send)
[`socket-recv`](#socket-recv)
[`socket-shutdown`](#socket-shutdown)
[`socket-close`](#socket-close)
- Port conversion
## Port conversion
[`socket-input-port`](#socket-input-port)
[`socket-output-port`](#socket-output-port)
- Control feature
## Control feature
[`call-with-socket`](#call-with-socket)
- Flag operations
## Flag operations
[`address-family`](#address-family)
[`address-info`](#address-info)
[`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-purge-flags`](#socket-purge-flags)
- Constant values
## Constant values
[`*af-unspec*`](#af-unspec)
[`*af-inet*`](#af-inet)
[`*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.
- Constructors
## Constructors
[`make-list-queue`](#make-list-queue)
[`list-queue`](#list-queue)
[`list-queue-copy`](#list-queue-copy)
[`list-queue-unfold`](#list-queue-unfold)
[`list-queue-unfold-right`](#list-queue-unfold-right)
- Predicates
## Predicates
[`list-queue?`](#list-queue-1)
[`list-queue-empty?`](#list-queue-empty)
- Accessors
## Accessors
[`list-queue-front`](#list-queue-front)
[`list-queue-back`](#list-queue-back)
[`list-queue-list`](#list-queue-list)
[`list-queue-first-last`](#list-queue-first-last)
- Mutators
## Mutators
[`list-queue-add-front!`](#list-queue-add-front)
[`list-queue-add-back!`](#list-queue-add-back)
[`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-concatenate`](#list-queue-concatenate)
- Mapping
## Mapping
[`list-queue-map`](#list-queue-map)
[`list-queue-map!`](#list-queue-map-1)
[`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.
- Constructors
## Constructors
[`vector-unfold`](#vector-unfold)
[`vector-unfold-right`](#vector-unfold-right)
[`vector-reverse-copy`](#vector-reverse-copy)
[`vector-concatenate`](#vector-concatenate)
[`vector-append-subvectors`](#vector-append-subvectors)
- Predicates
## Predicates
[`vector-empty?`](#vector-empty)
[`vector=`](#vector)
- Iteration
## Iteration
[`vector-fold`](#vector-fold)
[`vector-fold-right`](#vector-fold-right)
[`vector-map!`](#vector-map)
[`vector-count`](#vector-count)
[`vector-cumulate`](#vector-cumulate)
- Searching
## Searching
[`vector-index`](#vector-index)
[`vector-index-right`](#vector-index-right)
[`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-partition`](#vector-partition)
- Mutators
## Mutators
[`vector-swap!`](#vector-swap)
[`vector-reverse!`](#vector-reverse)
[`vector-reverse-copy!`](#vector-reverse-copy)
[`vector-unfold!`](#vector-unfold)
[`vector-unfold-right!`](#vector-unfold-right)
- Conversion
## Conversion
[`reverse-vector->list`](#reverse-vector-list)
[`reverse-list->vector`](#reverse-list-vector)