-
Notifications
You must be signed in to change notification settings - Fork 5
/
chezpart.sls
56 lines (55 loc) · 2.62 KB
/
chezpart.sls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
;; Reexports from `chezscheme` bindings that won't be replaced
;; by Racket-specific implementations.
(library (chezpart)
(export)
(import (chezscheme))
(export (import
(rename (except (chezscheme)
sort vector-sort vector-sort!
force delay identifier?
memv memq
output-port-buffer-mode
read-char peek-char
make-input-port make-output-port
close-input-port close-output-port
list? input-port? output-port?
open-input-file open-output-file abort
current-output-port current-input-port current-directory
open-input-string open-output-string get-output-string
open-input-output-file
with-input-from-file with-output-to-file
call-with-input-file call-with-output-file
format printf
write display newline port-name
error
date? make-date
dynamic-wind
call-with-current-continuation
make-engine engine-block engine-return
current-eval load
sleep thread?)
[make-parameter chez:make-parameter]
[void chez:void]
[date-second chez:date-second]
[date-minute chez:date-minute]
[date-hour chez:date-hour]
[date-day chez:date-day]
[date-month chez:date-month]
[date-year chez:date-year]
[date-week-day chez:date-week-day]
[date-year-day chez:date-year-day]
[string-copy! chez:string-copy!]
[apply chez:apply]
[procedure? chez:procedure?]
[substring chez:substring]
[gensym chez:gensym]
[symbol->string chez:symbol->string]
[random chez:random]
[fprintf chez:fprintf]
[current-error-port chez:current-error-port]
[string->number chez:string->number]
[file-exists? chez:file-exists?]
[directory-list chez:directory-list]
[filter chez:filter]
[member chez:member]
[raise chez:raise]))))