ruby_learner 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (188) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +5 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +6 -0
  7. data/Gemfile.lock +58 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +65 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +14 -0
  12. data/bin/new_terminal +25 -0
  13. data/bin/setup +8 -0
  14. data/docs/happy_ruby/RussOlsen_EloquentRuby_c1.pdf +0 -0
  15. data/docs/happy_ruby/RussOlsen_EloquentRuby_c5.pdf +0 -0
  16. data/docs/happy_ruby/TanoshiiRuby_v3_c23.pdf +0 -0
  17. data/docs/happy_ruby/TanoshiiRuby_v5_c1.pdf +0 -0
  18. data/docs/happy_ruby/TanoshiiRuby_v5_c2-3.pdf +0 -0
  19. data/docs/happy_ruby/c2.ipynb +479 -0
  20. data/docs/happy_ruby/c3_4.ipynb +237 -0
  21. data/docs/seminar/8-1.org +18 -0
  22. data/exe/ruby_learner +5 -0
  23. data/lib/ruby_learner/h.rb +14 -0
  24. data/lib/ruby_learner/methods.rb +131 -0
  25. data/lib/ruby_learner/random_h.rb +16 -0
  26. data/lib/ruby_learner/ruby_learner.rb +43 -0
  27. data/lib/ruby_learner/sequential_h.rb +15 -0
  28. data/lib/ruby_learner/typing_practice.rb +21 -0
  29. data/lib/ruby_learner/version.rb +3 -0
  30. data/questions/random_check/.rspec +1 -0
  31. data/questions/random_check/random_h.rb +16 -0
  32. data/questions/random_check/section_1/.rspec +1 -0
  33. data/questions/random_check/section_1/lib/answer.rb +15 -0
  34. data/questions/random_check/section_1/lib/sentence.org +9 -0
  35. data/questions/random_check/section_1/lib/workplace.rb +5 -0
  36. data/questions/random_check/section_1/spec/spec_helper.rb +100 -0
  37. data/questions/random_check/section_1/spec/workplace_spec.rb +10 -0
  38. data/questions/random_check/section_2/.rspec +1 -0
  39. data/questions/random_check/section_2/lib/answer.rb +17 -0
  40. data/questions/random_check/section_2/lib/sentence.org +12 -0
  41. data/questions/random_check/section_2/lib/workplace.rb +5 -0
  42. data/questions/random_check/section_2/spec/.rspec +1 -0
  43. data/questions/random_check/section_2/spec/spec_helper.rb +100 -0
  44. data/questions/random_check/section_2/spec/workplace_spec.rb +11 -0
  45. data/questions/sequential_check/section_1/part_1/lib/answer.rb +9 -0
  46. data/questions/sequential_check/section_1/part_1/lib/sentence.org +9 -0
  47. data/questions/sequential_check/section_1/part_1/lib/workplace.rb +5 -0
  48. data/questions/sequential_check/section_1/part_1/spec/spec_helper.rb +100 -0
  49. data/questions/sequential_check/section_1/part_1/spec/workplace_spec.rb +10 -0
  50. data/questions/sequential_check/section_1/part_2/lib/answer.rb +16 -0
  51. data/questions/sequential_check/section_1/part_2/lib/sentence.org +12 -0
  52. data/questions/sequential_check/section_1/part_2/lib/workplace.rb +5 -0
  53. data/questions/sequential_check/section_1/part_2/spec/.rspec +1 -0
  54. data/questions/sequential_check/section_1/part_2/spec/spec_helper.rb +100 -0
  55. data/questions/sequential_check/section_1/part_2/spec/workplace_spec.rb +11 -0
  56. data/ruby_learner.gemspec +41 -0
  57. data/takahashi/docs/README.org +139 -0
  58. data/takahashi/docs/drill.html +875 -0
  59. data/takahashi/docs/drill.html~ +877 -0
  60. data/takahashi/docs/drill.org +446 -0
  61. data/takahashi/docs/ruby_for_beginner.html +2642 -0
  62. data/takahashi/docs/ruby_for_beginner.org +1430 -0
  63. data/takahashi/sample_prog/answer/10_1.rb +5 -0
  64. data/takahashi/sample_prog/answer/11_1.rb +5 -0
  65. data/takahashi/sample_prog/answer/11_2.rb +4 -0
  66. data/takahashi/sample_prog/answer/1_1.rb +1 -0
  67. data/takahashi/sample_prog/answer/1_2.rb +1 -0
  68. data/takahashi/sample_prog/answer/1_3.rb +1 -0
  69. data/takahashi/sample_prog/answer/2_1.rb +5 -0
  70. data/takahashi/sample_prog/answer/2_2.rb +12 -0
  71. data/takahashi/sample_prog/answer/3_1.rb +10 -0
  72. data/takahashi/sample_prog/answer/4_1.rb +7 -0
  73. data/takahashi/sample_prog/answer/5_1.rb +6 -0
  74. data/takahashi/sample_prog/answer/5_2.rb +3 -0
  75. data/takahashi/sample_prog/answer/6_1.rb +3 -0
  76. data/takahashi/sample_prog/answer/6_2.rb +5 -0
  77. data/takahashi/sample_prog/answer/6_3.rb +5 -0
  78. data/takahashi/sample_prog/answer/6_4.rb +7 -0
  79. data/takahashi/sample_prog/answer/7_1.rb +3 -0
  80. data/takahashi/sample_prog/answer/7_2.rb +8 -0
  81. data/takahashi/sample_prog/answer/9_1.rb +3 -0
  82. data/takahashi/sample_prog/answer/9_2.rb +5 -0
  83. data/takahashi/sample_prog/answer/9_3.rb +10 -0
  84. data/takahashi/sample_prog/answer/hello.rb +3 -0
  85. data/workshop/.rspec +1 -0
  86. data/workshop/emacs.d/ac-comphist.dat +50 -0
  87. data/workshop/emacs.d/cp5022x.el +156 -0
  88. data/workshop/emacs.d/elpa/archives/gnu/archive-contents +1240 -0
  89. data/workshop/emacs.d/elpa/archives/melpa/archive-contents +2 -0
  90. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-autoloads.el +65 -0
  91. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-config.el +551 -0
  92. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-config.elc +0 -0
  93. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-pkg.el +6 -0
  94. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete.el +2164 -0
  95. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete.elc +0 -0
  96. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ada-mode +72 -0
  97. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/c++-mode +99 -0
  98. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/c-mode +55 -0
  99. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/caml-mode +231 -0
  100. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/clojure-mode +580 -0
  101. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/clojurescript-mode +475 -0
  102. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/coq-mode +278 -0
  103. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/css-mode +874 -0
  104. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/erlang-mode +216 -0
  105. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ess-julia-mode +37 -0
  106. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/go-mode +25 -0
  107. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/haskell-mode +679 -0
  108. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/java-mode +53 -0
  109. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/js-mode +148 -0
  110. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/julia-mode +37 -0
  111. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/lua-mode +21 -0
  112. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/nim-mode +70 -0
  113. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/objc-mode +161 -0
  114. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/octave-mode +46 -0
  115. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/php-mode +6144 -0
  116. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/python-mode +379 -0
  117. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/qml-mode +183 -0
  118. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ruby-mode +181 -0
  119. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/scala-mode +1347 -0
  120. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/scheme-mode +216 -0
  121. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/sclang-mode +1481 -0
  122. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/sh-mode +182 -0
  123. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/swift-mode +87 -0
  124. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/tcl-mode +172 -0
  125. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ts-mode +797 -0
  126. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/tuareg-mode +231 -0
  127. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/verilog-mode +313 -0
  128. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults-autoloads.el +16 -0
  129. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults-pkg.el +2 -0
  130. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults.el +90 -0
  131. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults.elc +0 -0
  132. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode-autoloads.el +26 -0
  133. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode-pkg.el +2 -0
  134. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode.el +877 -0
  135. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode.elc +0 -0
  136. data/workshop/emacs.d/elpa/haml-mode-readme.txt +8 -0
  137. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-light-theme.el +918 -0
  138. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-light-theme.elc +0 -0
  139. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme-autoloads.el +32 -0
  140. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme-pkg.el +8 -0
  141. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme.el +912 -0
  142. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme.elc +0 -0
  143. data/workshop/emacs.d/elpa/ox-bibtex-chinese-readme.txt +21 -0
  144. data/workshop/emacs.d/elpa/popup-20160709.729/popup-autoloads.el +15 -0
  145. data/workshop/emacs.d/elpa/popup-20160709.729/popup-pkg.el +2 -0
  146. data/workshop/emacs.d/elpa/popup-20160709.729/popup.el +1432 -0
  147. data/workshop/emacs.d/elpa/popup-20160709.729/popup.elc +0 -0
  148. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode-autoloads.el +33 -0
  149. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode-pkg.el +2 -0
  150. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode.el +470 -0
  151. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode.elc +0 -0
  152. data/workshop/emacs.d/elpa/yaml-mode-readme.txt +25 -0
  153. data/workshop/emacs.d/haml-mode-master/.gitignore +1 -0
  154. data/workshop/emacs.d/haml-mode-master/.mailmap +2 -0
  155. data/workshop/emacs.d/haml-mode-master/MIT-LICENSE +20 -0
  156. data/workshop/emacs.d/haml-mode-master/README.md +47 -0
  157. data/workshop/emacs.d/haml-mode-master/haml-mode.el +887 -0
  158. data/workshop/emacs.d/iceberg_theme.el +202 -0
  159. data/workshop/emacs.d/init-open-recentf.el +133 -0
  160. data/workshop/emacs.d/init.el +229 -0
  161. data/workshop/emacs.d/inits/line-num.el +264 -0
  162. data/workshop/emacs.d/install-elisp.el +366 -0
  163. data/workshop/emacs.d/markdown-mode/markdown-mode.el +5978 -0
  164. data/workshop/emacs.d/notes +12 -0
  165. data/workshop/emacs.d/processing-mode/processing-mode.el +275 -0
  166. data/workshop/emacs.d/recentf +31 -0
  167. data/workshop/emacs.d/ruby-mode/inf-ruby.el +416 -0
  168. data/workshop/emacs.d/ruby-mode/rdoc-mode.el +130 -0
  169. data/workshop/emacs.d/ruby-mode/ruby-electric.el +205 -0
  170. data/workshop/emacs.d/ruby-mode/ruby-mode.el +1496 -0
  171. data/workshop/emacs.d/ruby-mode/ruby-style.el +78 -0
  172. data/workshop/emacs.d/ruby-mode/rubydb2x.el +104 -0
  173. data/workshop/emacs.d/ruby-mode/rubydb3x.el +115 -0
  174. data/workshop/emacs.d/ruby_learner_init.el +244 -0
  175. data/workshop/emacs.d/themes/dracula-theme.el +431 -0
  176. data/workshop/emacs.d/themes/iceberg-theme.el +205 -0
  177. data/workshop/emacs.d/themes/my-misterioso-theme.el +109 -0
  178. data/workshop/emacs.d/themes/my-wombat-theme.el +121 -0
  179. data/workshop/emacs.d/wiki-mode/wiki.el +976 -0
  180. data/workshop/emacs_help.org +34 -0
  181. data/workshop/lib/answer.rb +1 -0
  182. data/workshop/lib/sentence.org +1 -0
  183. data/workshop/lib/workplace.rb +1 -0
  184. data/workshop/restore/empty.rb +0 -0
  185. data/workshop/spec/spec_helper.rb +100 -0
  186. data/workshop/spec/workplace_spec.rb +1 -0
  187. data/workshop/training_data.txt +3 -0
  188. metadata +343 -0
@@ -0,0 +1,580 @@
1
+ *agent*
2
+ *allow-unresolved-vars*
3
+ *assert*
4
+ *clojure-version*
5
+ *command-line-args*
6
+ *compile-files*
7
+ *compile-path*
8
+ *compiler-options*
9
+ *data-readers*
10
+ *default-data-reader-fn*
11
+ *err*
12
+ *file*
13
+ *flush-on-newline*
14
+ *fn-loader*
15
+ *in*
16
+ *math-context*
17
+ *ns*
18
+ *out*
19
+ *print-dup*
20
+ *print-length*
21
+ *print-level*
22
+ *print-meta*
23
+ *print-readably*
24
+ *read-eval*
25
+ *source-path*
26
+ *unchecked-math*
27
+ *use-context-classloader*
28
+ *verbose-defrecords*
29
+ *warn-on-reflection*
30
+ ->ArrayChunk
31
+ ->Vec
32
+ ->VecNode
33
+ ->VecSeq
34
+ -cache-protocol-fn
35
+ -reset-methods
36
+ accessor
37
+ aclone
38
+ add-classpath
39
+ add-watch
40
+ agent
41
+ agent-error
42
+ agent-errors
43
+ aget
44
+ alength
45
+ alias
46
+ all-ns
47
+ alter
48
+ alter-meta!
49
+ alter-var-root
50
+ amap
51
+ ancestors
52
+ and
53
+ apply
54
+ areduce
55
+ array-map
56
+ as->
57
+ aset
58
+ aset-boolean
59
+ aset-byte
60
+ aset-char
61
+ aset-double
62
+ aset-float
63
+ aset-int
64
+ aset-long
65
+ aset-short
66
+ assert
67
+ assoc
68
+ assoc!
69
+ assoc-in
70
+ associative?
71
+ atom
72
+ await
73
+ await-for
74
+ await1
75
+ bases
76
+ bean
77
+ bigdec
78
+ bigint
79
+ biginteger
80
+ binding
81
+ bit-and
82
+ bit-and-not
83
+ bit-clear
84
+ bit-flip
85
+ bit-not
86
+ bit-or
87
+ bit-set
88
+ bit-shift-left
89
+ bit-shift-right
90
+ bit-test
91
+ bit-xor
92
+ boolean
93
+ boolean-array
94
+ booleans
95
+ bound-fn
96
+ bound-fn*
97
+ bound?
98
+ butlast
99
+ byte
100
+ byte-array
101
+ bytes
102
+ case
103
+ cast
104
+ char
105
+ char-array
106
+ char-escape-string
107
+ char-name-string
108
+ char?
109
+ chars
110
+ chunk
111
+ chunk-append
112
+ chunk-buffer
113
+ chunk-cons
114
+ chunk-first
115
+ chunk-next
116
+ chunk-rest
117
+ chunked-seq?
118
+ class
119
+ class?
120
+ clear-agent-errors
121
+ clojure-version
122
+ coll?
123
+ comment
124
+ commute
125
+ comp
126
+ comparator
127
+ compare
128
+ compare-and-set!
129
+ compile
130
+ complement
131
+ concat
132
+ cond
133
+ cond->
134
+ cond->>
135
+ condp
136
+ conj
137
+ conj!
138
+ cons
139
+ constantly
140
+ construct-proxy
141
+ contains?
142
+ count
143
+ counted?
144
+ create-ns
145
+ create-struct
146
+ cycle
147
+ dec
148
+ dec'
149
+ decimal?
150
+ declare
151
+ default-data-readers
152
+ definline
153
+ definterface
154
+ defmacro
155
+ defmethod
156
+ defmulti
157
+ defn
158
+ defn-
159
+ defonce
160
+ defprotocol
161
+ defrecord
162
+ defstruct
163
+ deftype
164
+ delay
165
+ delay?
166
+ deliver
167
+ denominator
168
+ deref
169
+ derive
170
+ descendants
171
+ destructure
172
+ disj
173
+ disj!
174
+ dissoc
175
+ dissoc!
176
+ distinct
177
+ distinct?
178
+ doall
179
+ doc
180
+ dorun
181
+ doseq
182
+ dosync
183
+ dotimes
184
+ doto
185
+ double
186
+ double-array
187
+ doubles
188
+ drop
189
+ drop-last
190
+ drop-while
191
+ dtype
192
+ empty
193
+ empty?
194
+ ensure
195
+ enumeration-seq
196
+ error-handler
197
+ error-mode
198
+ eval
199
+ even?
200
+ every-pred
201
+ every?
202
+ ex-data
203
+ ex-info
204
+ extend
205
+ extend-class
206
+ extend-protocol
207
+ extend-type
208
+ extenders
209
+ extends?
210
+ false?
211
+ ffirst
212
+ file-seq
213
+ filter
214
+ filterv
215
+ find
216
+ find-doc
217
+ find-keyword
218
+ find-ns
219
+ find-protocol-impl
220
+ find-protocol-method
221
+ find-var
222
+ first
223
+ flatten
224
+ float
225
+ float-array
226
+ float?
227
+ floats
228
+ flush
229
+ fn
230
+ fn?
231
+ fnext
232
+ fnil
233
+ for
234
+ force
235
+ format
236
+ frequencies
237
+ future
238
+ future-call
239
+ future-cancel
240
+ future-cancelled?
241
+ future-done?
242
+ future?
243
+ gen-class
244
+ gen-interface
245
+ gensym
246
+ get
247
+ get-in
248
+ get-method
249
+ get-proxy-class
250
+ get-thread-bindings
251
+ get-validator
252
+ group-by
253
+ hash
254
+ hash-combine
255
+ hash-map
256
+ hash-set
257
+ identical?
258
+ identity
259
+ if-let
260
+ if-not
261
+ ifn?
262
+ import
263
+ in-ns
264
+ inc
265
+ inc'
266
+ init-proxy
267
+ instance?
268
+ int
269
+ int-array
270
+ integer?
271
+ interleave
272
+ intern
273
+ interpose
274
+ into
275
+ into-array
276
+ ints
277
+ io!
278
+ isa?
279
+ iterate
280
+ iterator-seq
281
+ juxt
282
+ keep
283
+ keep-indexed
284
+ key
285
+ keys
286
+ keyword
287
+ keyword?
288
+ last
289
+ lazy-cat
290
+ lazy-seq
291
+ let
292
+ letfn
293
+ line-seq
294
+ list
295
+ list*
296
+ list?
297
+ load
298
+ load-file
299
+ load-reader
300
+ load-string
301
+ loaded-libs
302
+ locking
303
+ long
304
+ long-array
305
+ longs
306
+ loop
307
+ macroexpand
308
+ macroexpand-1
309
+ make-array
310
+ make-hierarchy
311
+ map
312
+ map-indexed
313
+ map?
314
+ mapcat
315
+ mapv
316
+ max
317
+ max-key
318
+ memfn
319
+ memoize
320
+ merge
321
+ merge-with
322
+ meta
323
+ method-sig
324
+ methods
325
+ min
326
+ min-key
327
+ mod
328
+ munge
329
+ name
330
+ namespace
331
+ namespace-munge
332
+ neg?
333
+ newline
334
+ next
335
+ nfirst
336
+ nil?
337
+ nnext
338
+ not
339
+ not-any?
340
+ not-empty
341
+ not-every?
342
+ not=
343
+ ns
344
+ ns-aliases
345
+ ns-imports
346
+ ns-interns
347
+ ns-map
348
+ ns-name
349
+ ns-publics
350
+ ns-refers
351
+ ns-resolve
352
+ ns-unalias
353
+ ns-unmap
354
+ nth
355
+ nthnext
356
+ nthrest
357
+ num
358
+ number?
359
+ numerator
360
+ object-array
361
+ odd?
362
+ or
363
+ parents
364
+ partial
365
+ partition
366
+ partition-all
367
+ partition-by
368
+ pcalls
369
+ peek
370
+ persistent!
371
+ pmap
372
+ pop
373
+ pop!
374
+ pop-thread-bindings
375
+ pos?
376
+ pr
377
+ pr-str
378
+ prefer-method
379
+ prefers
380
+ primitives-classnames
381
+ print
382
+ print-ctor
383
+ print-dup
384
+ print-method
385
+ print-namespace-doc
386
+ print-simple
387
+ print-str
388
+ printf
389
+ println
390
+ println-str
391
+ prn
392
+ prn-str
393
+ promise
394
+ proxy
395
+ proxy-call-with-super
396
+ proxy-mappings
397
+ proxy-name
398
+ proxy-super
399
+ push-thread-bindings
400
+ pvalues
401
+ quot
402
+ rand
403
+ rand-int
404
+ rand-nth
405
+ range
406
+ ratio?
407
+ rational?
408
+ rationalize
409
+ re-find
410
+ re-groups
411
+ re-matcher
412
+ re-matches
413
+ re-pattern
414
+ re-seq
415
+ read
416
+ read-line
417
+ read-string
418
+ realized?
419
+ reduce
420
+ reduce-kv
421
+ reduced
422
+ reduced?
423
+ reductions
424
+ ref
425
+ ref-history-count
426
+ ref-max-history
427
+ ref-min-history
428
+ ref-set
429
+ refer
430
+ refer-clojure
431
+ reify
432
+ release-pending-sends
433
+ rem
434
+ remove
435
+ remove-all-methods
436
+ remove-method
437
+ remove-ns
438
+ remove-watch
439
+ repeat
440
+ repeatedly
441
+ replace
442
+ replicate
443
+ require
444
+ reset!
445
+ reset-meta!
446
+ resolve
447
+ rest
448
+ restart-agent
449
+ resultset-seq
450
+ reverse
451
+ reversible?
452
+ rseq
453
+ rsubseq
454
+ satisfies?
455
+ second
456
+ select-keys
457
+ send
458
+ send-off
459
+ send-via
460
+ seq
461
+ seq?
462
+ seque
463
+ sequence
464
+ sequential?
465
+ set
466
+ set-agent-send-executor!
467
+ set-agent-send-off-executor!
468
+ set-error-handler!
469
+ set-error-mode!
470
+ set-validator!
471
+ set?
472
+ short
473
+ short-array
474
+ shorts
475
+ shuffle
476
+ shutdown-agents
477
+ slurp
478
+ some
479
+ some->
480
+ some->>
481
+ some-fn
482
+ sort
483
+ sort-by
484
+ sorted-map
485
+ sorted-map-by
486
+ sorted-set
487
+ sorted-set-by
488
+ sorted?
489
+ special-form-anchor
490
+ special-symbol?
491
+ spit
492
+ split-at
493
+ split-with
494
+ str
495
+ stream?
496
+ string?
497
+ struct
498
+ struct-map
499
+ subs
500
+ subseq
501
+ subvec
502
+ supers
503
+ swap!
504
+ symbol
505
+ symbol?
506
+ sync
507
+ syntax-symbol-anchor
508
+ take
509
+ take-last
510
+ take-nth
511
+ take-while
512
+ test
513
+ the-ns
514
+ thread-bound?
515
+ time
516
+ to-array
517
+ to-array-2d
518
+ trampoline
519
+ transient
520
+ tree-seq
521
+ true?
522
+ type
523
+ unchecked-add
524
+ unchecked-add-int
525
+ unchecked-byte
526
+ unchecked-char
527
+ unchecked-dec
528
+ unchecked-dec-int
529
+ unchecked-divide
530
+ unchecked-divide-int
531
+ unchecked-double
532
+ unchecked-float
533
+ unchecked-inc
534
+ unchecked-inc-int
535
+ unchecked-int
536
+ unchecked-long
537
+ unchecked-multiply
538
+ unchecked-multiply-int
539
+ unchecked-negate
540
+ unchecked-negate-int
541
+ unchecked-remainder
542
+ unchecked-remainder-int
543
+ unchecked-short
544
+ unchecked-subtract
545
+ unchecked-subtract-int
546
+ underive
547
+ unquote
548
+ unquote-splicing
549
+ update-in
550
+ update-proxy
551
+ use
552
+ val
553
+ vals
554
+ var-get
555
+ var-set
556
+ var?
557
+ vary-meta
558
+ vec
559
+ vector
560
+ vector-of
561
+ vector?
562
+ when
563
+ when-first
564
+ when-let
565
+ when-not
566
+ while
567
+ with-bindings
568
+ with-bindings*
569
+ with-in-str
570
+ with-loading-context
571
+ with-local-vars
572
+ with-meta
573
+ with-open
574
+ with-out-str
575
+ with-precision
576
+ with-redefs
577
+ with-redefs-fn
578
+ xml-seq
579
+ zero?
580
+ zipmap