-
Notifications
You must be signed in to change notification settings - Fork 0
/
root-modules.rkt
149 lines (132 loc) · 2.73 KB
/
root-modules.rkt
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#lang racket/base
#|
A selection of "root modules" to use when searching recursively for
exported symbols to enter into a dictionary.
|#
(provide interesting-modules)
(define interesting-modules
'('#%kernel
racket
racket/async-channel
racket/base
racket/block
racket/bool
racket/bytes
racket/class
racket/cmdline
racket/contract
racket/contract/combinator
racket/contract/parametric
racket/contract/region
racket/control
racket/date
racket/dict
racket/draw
racket/draw/draw-sig
racket/draw/draw-unit
racket/enter
racket/fasl
racket/file
racket/fixnum
racket/flonum
racket/function
racket/future
racket/generator
racket/gui
racket/gui/base
racket/gui/dynamic
racket/gui/init
racket/help
racket/include
racket/init
racket/language-info
racket/list
racket/load
racket/local
racket/match
racket/math
racket/mpair
racket/package
racket/path
racket/place
racket/port
racket/pretty
racket/promise
racket/provide
racket/provide-syntax
racket/provide-transform
racket/require
racket/require-syntax
racket/require-transform
racket/runtime-config
racket/runtime-path
racket/sandbox
racket/sequence
racket/serialize
racket/set
racket/shared
racket/snip
racket/splicing
racket/stream
racket/string
racket/struct-info
racket/stxparam
racket/stxparam-exptime
racket/surrogate
racket/syntax
racket/system
racket/tcp
racket/trace
racket/trait
racket/udp
racket/unit
racket/unit-exptime
racket/unsafe/ops
racket/vector
syntax/boundmap
syntax/context
syntax/define
syntax/docprovide
syntax/flatten-begin
syntax/free-vars
syntax/id-table
syntax/kerncase
syntax/keyword
syntax/location
syntax/modcode
syntax/modcollapse
syntax/moddep
syntax/modread
syntax/modresolve
syntax/module-reader
syntax/name
syntax/parse
syntax/parse/debug
syntax/parse/define
syntax/path-spec
syntax/quote
syntax/readerr
syntax/srcloc
syntax/strip-context
syntax/struct
syntax/stx
syntax/template
syntax/to-string
syntax/toplevel
syntax/trusted-xforms
pict
scribble/manual
scribble/xref
setup/dirs
setup/xref
data/order
data/queue
data/skip-list
data/splay-tree
rackunit
xml
json
net/url
net/url-structs
unstable/error
))