scheme:base
-- r7rs
Export (scheme base)
define-syntax
;let-syntax
;letrec-syntax
;syntax-rules
;syntax-error
;_
;...
;=>
;else
;quote
;quasiquote
;unquote
;unquote-splicing
;lambda
;define
;let
;let*
;letrec
;letrec*
;set!
;define-values
;let-values
;let*-values
;define-record-type
;begin
;and
;or
;if
;unless
;when
;cond
;case
;do
;eq?
;eqv?
;equal?
;boolean?
;boolean=?
;not
;symbol?
;symbol=?
;number?
;integer?
;real?
;rational?
;complex?
;exact?
;inexact?
;exact-integer?
;zero?
;positive?
;negative?
;odd?
;even?
;=
;<
;>
;<=
;>=
;+
;-
;*
;/
;abs
;floor/
;floor-quotient
;floor-remainder
;truncate/
;truncate-quotient
;truncate-remainder
;floor
;ceiling
;truncate
;round
;min
;max
;gcd
;lcm
;expt
;square
;exact-integer-sqrt
;rationalize
;numerator
;denominator
;pair?
;cons
;car
;cdr
;set-car!
;set-cdr!
;caar
;cadr
;cdar
;cddr
;null?
;list?
;list
;make-list
;length
;append
;list-copy
;reverse
;list-ref
;list-tail
;list-set!
;map
;for-each
;member
;memq
;memv
;assoc
;assq
;assv
;vector?
;vector
;make-vector
;vector-length
;vector-append
;vector-copy
;vector-copy!
;vector-fill!
;vector-ref
;vector-set!
;vector->list
;list->vector
;vector-map
;vector-for-each
;string?
;string
;make-string
;string-length
;string-append
;string-copy
;string-copy!
;string-fill!
;substring
;string-ref
;string-set!
;string=?
;string<?
;string>?
;string<=?
;string>=?
;number->string
;string->number
;symbol->string
;string->symbol
;string->list
;list->string
;string->vector
;vector->string
;string-map
;string-for-each
;bytevector?
;bytevector
;make-bytevector
;bytevector-length
;bytevector-append
;bytevector-copy
;bytevector-copy!
;bytevector-u8-ref
;bytevector-u8-set!
;utf8->string
;string->utf8
;port?
;binary-port?
;textual-port?
;input-port?
;input-port-open?
;output-port?
;output-port-open?
;open-input-bytevector
;open-output-bytevector
;get-output-bytevector
;open-input-string
;open-output-string
;get-output-string
;close-port
;close-input-port
;close-output-port
;u8-ready?
;peek-u8
;read-u8
;write-u8
;read-bytevector
;read-bytevector!
;write-bytevector
;char-ready?
;peek-char
;read-char
;write-char
;read-string
;write-string
;read-line
;newline
;flush-output-port
;call-with-port
;eof-object
;eof-object?
;char?
;char=?
;char<?
;char>?
;char<=?
;char>=?
;char->integer
;integer->char
;procedure?
;apply
;values
;call-with-values
;error-object?
;read-error?
;file-error?
;error
;error-object-message
;error-object-irritants
;guard
;with-exception-handler
;raise
;raise-continuable
;parameterize
;make-parameter
;current-input-port
;current-output-port
;current-error-port
;call-with-current-continuation
;dynamic-wind
;cond-expand
;features
;include
;include-ci
;import
;Base Library
The
(scheme base)
library exports many of the procedures and syntax bindings that are traditionally associated with Scheme. The division between the base library and the other standard libraries is based on use, not on construction. In particular, some facilities that are typically implemented as primitives by a compiler or the run-time system rather than in terms of other standard procedures or syntax are not part of the base library, but are defined in separate libraries. By the same token, some exports of the base library are implementable in terms of other exports. They are redundant in the strict sense of the word, but they capture common patterns of usage, and are therefore provided as convenient abbreviations.* + - ... / < <= = => > >= _ abs and append apply assoc assq assv begin binary-port? boolean=? boolean? bytevector bytevector-append bytevector-copy bytevector-copy! bytevector-length bytevector-u8-ref bytevector-u8-set! bytevector? caar cadr call-with-current-continuation call-with-port call-with-values call/cc car case cdar cddr cdr ceiling char->integer char-ready? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port close-port complex? cond cond-expand cons current-error-port current-input-port current-output-port define define-record-type define-syntax define-values denominator do dynamic-wind else eof-object eof-object? eq? equal? eqv? error error-object-irritants error-object-message error-object? even? exact exact-integer-sqrt exact-integer? exact? expt features file-error? floor floor-quotient floor-remainder floor/ flush-output-port for-each gcd get-output-bytevector get-output-string guard if include include-ci inexact inexact? input-port-open? input-port? integer->char integer? lambda lcm length let let* let*-values let-syntax let-values letrec letrec* letrec-syntax list list->string list->vector list-copy list-ref list-set! list-tail list? make-bytevector make-list make-parameter make-string make-vector map max member memq memv min modulo negative? newline not null? number->string number? numerator odd? open-input-bytevector open-input-string open-output-bytevector open-output-string or output-port-open? output-port? pair? parameterize peek-char peek-u8 port? positive? procedure? quasiquote quote quotient raise raise-continuable rational? rationalize read-bytevector read-bytevector! read-char read-error? read-line read-string read-u8 real? remainder reverse round set! set-car! set-cdr! square string string->list string->number string->symbol string->utf8 string->vector string-append string-copy string-copy! string-fill! string-for-each string-length string-map string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol=? symbol? syntax-error syntax-rules textual-port? truncate truncate-quotient truncate-remainder truncate/ u8-ready? unless unquote unquote-splicing utf8->string values vector vector->list vector->string vector-append vector-copy vector-copy! vector-fill! vector-for-each vector-length vector-map vector-ref vector-set! vector? when with-exception-handler write-bytevector write-char write-string write-u8 zero?
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.