Format all links

This commit is contained in:
Justin Ethier 2016-10-01 17:31:26 -04:00
parent 4597143edf
commit 0530e0d591

View file

@ -2,6 +2,8 @@
This section contains all of the primitives and other objects that are included in the Cyclone runtime. These objects are always available regardless of library imports. This section contains all of the primitives and other objects that are included in the Cyclone runtime. These objects are always available regardless of library imports.
For more information see the [R<sup>7</sup>RS Scheme Specification](../r7rs.pdf).
- [`*`](#) - [`*`](#)
- [`+`](#-1) - [`+`](#-1)
- [`-`](#-) - [`-`](#-)
@ -11,8 +13,76 @@ This section contains all of the primitives and other objects that are included
- [`=`](#-5) - [`=`](#-5)
- [`>`](#-6) - [`>`](#-6)
- [`>=`](#-7) - [`>=`](#-7)
- [`apply `](#apply)
- [`boolean? `](#boolean)
- [`bytevector `](#bytevector)
- [`bytevector-append `](#bytevector-append)
- [`bytevector-length `](#bytevector-length)
- [`bytevector-u8-ref `](#bytevector-u8-ref)
- [`bytevector-u8-set! `](#bytevector-u8-set)
- [`bytevector? `](#bytevector)
- [`caar `](#caar)
- [`cadr `](#cadr)
- [`car `](#car)
- [`cdar `](#cdar)
- [`cddr `](#cddr)
- [`cdr `](#cdr)
- [`cell `](#cell)
- [`cell-get `](#cell-get)
- [`char->integer `](#char-integer)
- [`char? `](#char)
- [`close-input-port `](#close-input-port)
- [`close-output-port `](#close-output-port)
- [`close-port `](#close-port)
- [`command-line-arguments`](#command-line-arguments)
- [`cons `](#cons)
- [`delete-file `](#delete-file)
- [`eof-object? `](#eof-object)
- [`eq? `](#eq)
- [`equal? `](#equal)
- [`eqv? `](#eqv)
- [`error `](#error)
- [`exit `](#exit)
- [`file-exists? `](#file-exists)
- [`integer->char `](#integer-char)
- [`integer? `](#integer)
- [`length `](#length)
- [`list->string `](#list-string)
- [`list->vector `](#list-vector)
- [`make-bytevector `](#make-bytevector)
- [`make-vector `](#make-vector)
- [`null? `](#null)
- [`number->string `](#number-string)
- [`number? `](#number)
- [`open-input-file `](#open-input-file)
- [`open-output-file `](#open-output-file)
- [`pair? `](#pair)
- [`peek-char `](#peek-char)
- [`port? `](#port)
- [`procedure? `](#procedure)
- [`read-char `](#read-char)
- [`real? `](#real)
- [`set-car! `](#set-car)
- [`set-cdr! `](#set-cdr)
- [`set-cell! `](#set-cell)
- [`string->number `](#string-number)
- [`string->symbol `](#string-symbol)
- [`string-append `](#string-append)
- [`string-cmp `](#string-cmp)
- [`string-length `](#string-length)
- [`string-ref `](#string-ref)
- [`string-set! `](#string-set)
- [`string? `](#string)
- [`substring `](#substring)
- [`symbol->string `](#symbol-string)
- [`symbol? `](#symbol)
- [`system `](#system)
- [`vector-length `](#vector-length)
- [`vector-ref `](#vector-ref)
- [`vector-set! `](#vector-set)
- [`vector? `](#vector)
#* #\*
#+ #+
#- #-
#/ #/
@ -21,73 +91,71 @@ This section contains all of the primitives and other objects that are included
#= #=
#> #>
#>= #>=
#apply
apply #boolean?
boolean? #bytevector
bytevector #bytevector-append
bytevector-append #bytevector-length
bytevector-length #bytevector-u8-ref
bytevector-u8-ref #bytevector-u8-set!
bytevector-u8-set! #bytevector?
bytevector? #caar
caar #cadr
cadr #car
car #cdar
cdar #cddr
cddr #cdr
cdr #cell
cell #cell-get
cell-get #char->integer
char->integer #char?
char? #close-input-port
close-input-port #close-output-port
close-output-port #close-port
close-port #command-line-arguments
command-line-arguments #cons
cons #delete-file
delete-file #eof-object?
eof-object? #eq?
eq? #equal?
equal? #eqv?
eqv? #error
error #exit
exit #file-exists?
file-exists? #integer->char
integer->char #integer?
integer? #length
length #list->string
list->string #list->vector
list->vector #make-bytevector
make-bytevector #make-vector
make-vector #null?
null? #number->string
number->string #number?
number? #open-input-file
open-input-file #open-output-file
open-output-file #pair?
pair? #peek-char
peek-char #port?
port? #procedure?
procedure? #read-char
read-char #real?
real? #set-car!
set-car! #set-cdr!
set-cdr! #set-cell!
set-cell! #string->number
set-global! #string->symbol
string->number #string-append
string->symbol #string-cmp
string-append #string-length
string-cmp #string-ref
string-length #string-set!
string-ref #string?
string-set! #substring
string? #symbol->string
substring #symbol?
symbol->string #system
symbol? #vector-length
system #vector-ref
vector-length #vector-set!
vector-ref #vector?
vector-set!
vector?