improve formatting

This commit is contained in:
Mark Meyer 2016-08-08 21:30:39 +02:00
parent 037a57e304
commit 7630b82c6a

View file

@ -2,174 +2,147 @@
The `(scheme base)` library exports many of the procedures and syntax bindings that are traditionally associated with Scheme. The `(scheme base)` library exports many of the procedures and syntax bindings that are traditionally associated with Scheme.
- `cons-source` - [`cons-source`](#cons-source)
- `syntax-rules` - [`syntax-rules`](#syntax-rules)
- `letrec*` - [`letrec*`](#letrec*)
- `guard` - [`guard`](#guard)
- `guard-aux` - [`guard-aux`](#guard-aux)
- `define-record-type` - [`define-record-type`](#define-record-type)
- [`record?`](#record?)
Also in SRFI-9. - [`register-simple-type`](#register-simple-type)
- [`make-type-predicate`](#make-type-predicate)
- `record?` - [`make-constructor`](#make-constructor)
- [`make-getter`](#make-getter)
Also in SRFI-9. - [`make-setter`](#make-setter)
- [`slot-set!`](#slot-set!)
- `register-simple-type` - [`type-slot-offset`](#type-slot-offset)
- [`receive`](#receive)
Also in SRFI-9. - [`abs`](#abs)
- [`max`](#max)
- `make-type-predicate` - [`min`](#min)
- [`modulo`](#modulo)
Also in SRFI-9. - [`floor-remainder`](#floor-remainder)
- [`even?`](#even?)
- `make-constructor` - [`exact-integer?`](#exact-integer?)
- [`exact?`](#exact?)
Also in SRFI-9. - [`inexact?`](#inexact?)
- [`odd?`](#odd?)
- `make-getter` - [`complex?`](#complex?)
- [`rational?`](#rational?)
Also in SRFI-9. - [`gcd`](#gcd)
- [`lcm`](#lcm)
- `make-setter` - [`quotient`](#quotient)
- [`remainder`](#remainder)
Also in SRFI-9. - [`truncate-quotient `](#truncate-quotient )
- [`truncate-remainder `](#truncate-remainder )
- `slot-set!` - [`truncate/ `](#truncate/ )
- [`floor-quotient `](#floor-quotient )
Also in SRFI-9. - [`floor-remainder `](#floor-remainder )
- [`floor/ `](#floor/ )
- `type-slot-offset` - [`square`](#square)
- [`expt`](#expt)
Also in SRFI-9. - [`call-with-current-continuation`](#call-with-current-continuation)
- [`call/cc`](#call/cc)
- `receive` - [`call-with-values`](#call-with-values)
- `abs` - [`dynamic-wind`](#dynamic-wind)
- `max` - [`values`](#values)
- `min` - [`char=?`](#char=?)
- `modulo` - [`char<?`](#char<?)
- `floor-remainder` - [`char>?`](#char>?)
- `even?` - [`char<=?`](#char<=?)
- `exact-integer?` - [`char>=?`](#char>=?)
- `exact?` - [`string=?`](#string=?)
- `inexact?` - [`string<?`](#string<?)
- `odd?` - [`string<=?`](#string<=?)
- `complex?` - [`string>?`](#string>?)
- `rational?` - [`string>=?`](#string>=?)
- `gcd` - [`foldl`](#foldl)
- `lcm` - [`foldr`](#foldr)
- `quotient` - [`not`](#not)
- `remainder` - [`list?`](#list?)
- `truncate-quotient ` - [`zero?`](#zero?)
- `truncate-remainder ` - [`positive?`](#positive?)
- `truncate/ ` - [`negative?`](#negative?)
- `floor-quotient ` - [`append`](#append)
- `floor-remainder ` - [`list`](#list)
- `floor/ ` - [`make-list`](#make-list)
- `square` - [`list-copy`](#list-copy)
- `expt` - [`map`](#map)
- `call-with-current-continuation` - [`for-each`](#for-each)
- `call/cc` - [`list-tail`](#list-tail)
- `call-with-values` - [`list-ref`](#list-ref)
- `dynamic-wind` - [`list-set!`](#list-set!)
- `values` - [`reverse`](#reverse)
- `char=?` - [`boolean=?`](#boolean=?)
- `char<?` - [`symbol=?`](#symbol=?)
- `char>?` - [`Cyc-obj=?`](#Cyc-obj=?)
- `char<=?` - [`vector`](#vector)
- `char>=?` - [`vector-append`](#vector-append)
- `string=?` - [`vector-copy`](#vector-copy)
- `string<?` - [`vector-copy!`](#vector-copy!)
- `string<=?` - [`vector-fill!`](#vector-fill!)
- `string>?` - [`vector->list`](#vector->list)
- `string>=?` - [`vector->string`](#vector->string)
- `foldl` - [`vector-map`](#vector-map)
- `foldr` - [`vector-for-each`](#vector-for-each)
- `not` - [`make-string`](#make-string)
- `list?` - [`string`](#string)
- `zero?` - [`string-copy`](#string-copy)
- `positive?` - [`string-copy!`](#string-copy!)
- `negative?` - [`string-fill!`](#string-fill!)
- `append` - [`string->list`](#string->list)
- `list` - [`string->vector`](#string->vector)
- `make-list` - [`string-map`](#string-map)
- `list-copy` - [`string-for-each`](#string-for-each)
- `map` - [`make-parameter`](#make-parameter)
- `for-each` - [`current-output-port`](#current-output-port)
- `list-tail` - [`current-input-port`](#current-input-port)
- `list-ref` - [`current-error-port`](#current-error-port)
- `list-set!` - [`call-with-port`](#call-with-port)
- `reverse` - [`error`](#error)
- `boolean=?` - [`raise`](#raise)
- `symbol=?` - [`raise-continuable`](#raise-continuable)
- `Cyc-obj=?` - [`with-exception-handler`](#with-exception-handler)
- `vector` - [`Cyc-add-exception-handler`](#Cyc-add-exception-handler)
- `vector-append` - [`Cyc-remove-exception-handler`](#Cyc-remove-exception-handler)
- `vector-copy` - [`newline`](#newline)
- `vector-copy!` - [`write-char`](#write-char)
- `vector-fill!` - [`write-string`](#write-string)
- `vector->list` - [`flush-output-port`](#flush-output-port)
- `vector->string` - [`read-line`](#read-line)
- `vector-map` - [`read-string`](#read-string)
- `vector-for-each` - [`input-port?`](#input-port?)
- `make-string` - [`output-port?`](#output-port?)
- `string` - [`input-port-open?`](#input-port-open?)
- `string-copy` - [`output-port-open?`](#output-port-open?)
- `string-copy!` - [`features`](#features)
- `string-fill!` - [`Cyc-version`](#Cyc-version)
- `string->list` - [`any`](#any)
- `string->vector` - [`every`](#every)
- `string-map` - [`and`](#and)
- `string-for-each` - [`or`](#or)
- `make-parameter` - [`let`](#let)
- `current-output-port` - [`let*`](#let*)
- `current-input-port` - [`letrec`](#letrec)
- `current-error-port` - [`begin`](#begin)
- `call-with-port` - [`case`](#case)
- `error` - [`cond`](#cond)
- `raise` - [`cond-expand`](#cond-expand)
- `raise-continuable` - [`do`](#do)
- `with-exception-handler` - [`when`](#when)
- `Cyc-add-exception-handler` - [`unless`](#unless)
- `Cyc-remove-exception-handler` - [`quasiquote`](#quasiquote)
- `newline` - [`floor`](#floor)
- `write-char` - [`ceiling`](#ceiling)
- `write-string` - [`truncate`](#truncate)
- `flush-output-port` - [`round`](#round)
- `read-line` - [`exact`](#exact)
- `read-string` - [`inexact`](#inexact)
- `input-port?` - [`eof-object`](#eof-object)
- `output-port?` - [`syntax-error`](#syntax-error)
- `input-port-open?` - [`bytevector-copy`](#bytevector-copy)
- `output-port-open?` - [`bytevector-copy!`](#bytevector-copy!)
- `features` - [`utf8->string`](#utf8->string)
- `Cyc-version` - [`string->utf8`](#string->utf8)
- `any` - [`denominator`](#denominator)
- `every` - [`numerator`](#numerator)
- `and`
- `or`
- `let`
- `let*`
- `letrec`
- `begin`
- `case`
- `cond`
- `cond-expand`
- `do`
- `when`
- `unless`
- `quasiquote`
- `floor`
- `ceiling`
- `truncate`
- `round`
- `exact`
- `inexact`
- `eof-object`
- `syntax-error`
- `bytevector-copy`
- `bytevector-copy!`
- `utf8->string`
- `string->utf8`
- `denominator`
- `numerator`