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,1347 @@
1
+ _
2
+ :
3
+ =
4
+ =>
5
+ <<:
6
+ <%
7
+ >:
8
+ #
9
+ @
10
+ abstract
11
+ case
12
+ catch
13
+ class
14
+ def
15
+ do
16
+ else
17
+ extends
18
+ false
19
+ final
20
+ finally
21
+ for
22
+ forSome
23
+ if
24
+ implicit
25
+ import
26
+ lazy
27
+ match
28
+ new
29
+ null
30
+ object
31
+ override
32
+ package
33
+ private
34
+ protected
35
+ requires
36
+ return
37
+ sealed
38
+ super
39
+ this
40
+ throw
41
+ trait
42
+ true
43
+ try
44
+ type
45
+ val
46
+ var
47
+ while
48
+ with
49
+ yield
50
+
51
+ scala
52
+ scala.actors
53
+ scala.actors.remote
54
+ scala.annotation.unchecked
55
+ scala.collection
56
+ scala.collection.immutable
57
+ scala.collection.jcl
58
+ scala.collection.mutable
59
+ scala.compat
60
+ scala.concurrent
61
+ scala.io
62
+ scala.mobile
63
+ scala.ref
64
+ scala.reflect
65
+ scala.runtime
66
+ scala.swing
67
+ scala.swing.event
68
+ scala.swing.test
69
+ scala.testing
70
+ scala.text
71
+ scala.util
72
+ scala.util.automata
73
+ scala.util.grammar
74
+ scala.util.logging
75
+ scala.util.matching
76
+ scala.util.parsing
77
+ scala.util.parsing.ast
78
+ scala.util.parsing.combinator
79
+ scala.util.parsing.combinator.lexical
80
+ scala.util.parsing.combinator.syntactical
81
+ scala.util.parsing.combinator.testing
82
+ scala.util.parsing.combinatorold
83
+ scala.util.parsing.combinatorold.lexical
84
+ scala.util.parsing.combinatorold.syntactical
85
+ scala.util.parsing.combinatorold.testing
86
+ scala.util.parsing.input
87
+ scala.util.parsing.json
88
+ scala.util.parsing.syntax
89
+ scala.util.regexp
90
+ scala.xml
91
+ scala.xml.dtd
92
+ scala.xml.factory
93
+ scala.xml.include
94
+ scala.xml.include.sax
95
+ scala.xml.parsing
96
+ scala.xml.path
97
+ scala.xml.persistent
98
+ scala.xml.pull
99
+ scala.xml.transform
100
+
101
+ !
102
+ ::
103
+ AbstractActor
104
+ AbstractButton
105
+ AbstractSyntax
106
+ AbstractSyntax.Element
107
+ AbstractSyntax.NameElement
108
+ Action
109
+ Action.Trigger
110
+ Action.Trigger.Wrapper
111
+ ActionEvent
112
+ Actor
113
+ AdjustingEvent
114
+ Annotation
115
+ Any
116
+ AnyRef
117
+ AnyVal
118
+ Applet
119
+ Applet.UI
120
+ Application
121
+ Apply0
122
+ Array
123
+ Array.Array0
124
+ Array.ArrayLike
125
+ Array.Projection
126
+ ArrayBuffer
127
+ ArrayList
128
+ ArrayStack
129
+ Atom
130
+ AttListDecl
131
+ AttrDecl
132
+ Attribute
133
+ BackgroundChanged
134
+ Base
135
+ Base.Alt
136
+ Base.Meta
137
+ Base.RegExp
138
+ Base.Sequ
139
+ Base.Star
140
+ BaseBerrySethi
141
+ BasicTransformer
142
+ BasicTransformer.NeedsCopy
143
+ BeanDescription
144
+ BeanDisplayName
145
+ BeanInfo
146
+ BeanInfoSkip
147
+ BeanProperty
148
+ Benchmark
149
+ BigDecimal
150
+ BigInt
151
+ Binder
152
+ Binders
153
+ Binders.BinderEnv
154
+ Binders.BindingSensitive
155
+ Binders.BoundElement
156
+ Binders.ReturnAndDo
157
+ Binders.Scope
158
+ Binders.UnboundElement
159
+ Binders.UnderBinder
160
+ BindingParsers
161
+ BitSet
162
+ Boolean
163
+ BorderPanel
164
+ BoxPanel
165
+ Buffer
166
+ Buffer.DefaultBufferIterator
167
+ Buffer.Projection
168
+ Buffer.Projection0
169
+ Buffer.Projection0.MapProjection
170
+ Buffer.Range
171
+ Buffer.Range.RangeIterator
172
+ BufferIterator
173
+ BufferProxy
174
+ BufferWrapper
175
+ BufferWrapper.IteratorWrapper
176
+ BufferWrapper.Range
177
+ BufferedIterator
178
+ BufferedIterator.Advanced
179
+ BufferedIterator.Default
180
+ BufferedIterator.PutBack
181
+ BufferedSource
182
+ Button
183
+ ButtonClicked
184
+ ButtonGroup
185
+ ByNameFunction
186
+ Byte
187
+ BytePickle.Def
188
+ BytePickle.PU
189
+ BytePickle.PicklerEnv
190
+ BytePickle.PicklerState
191
+ BytePickle.Ref
192
+ BytePickle.RefDef
193
+ BytePickle.SPU
194
+ BytePickle.UnPicklerEnv
195
+ BytePickle.UnPicklerState
196
+ CachedFileStorage
197
+ CaretUpdate
198
+ Cell
199
+ Channel
200
+ Channel.LinkedList
201
+ Char
202
+ CharArrayPosition
203
+ CharArrayReader
204
+ CharInputStreamIterator
205
+ CharSequenceReader
206
+ CheckBox
207
+ CheckMenuItem
208
+ CircularIncludeException
209
+ ClassfileAnnotation
210
+ ClassfileAttribute
211
+ CloneableCollection
212
+ Code
213
+ Collection
214
+ Collection.Projection
215
+ CollectionProxy
216
+ CollectionWrapper
217
+ ComboBox
218
+ ComboBox.BuiltInEditor
219
+ ComboBox.BuiltInEditor.DelegatedEditor
220
+ ComboBox.Editor
221
+ Comment
222
+ Component
223
+ Component.SuperMixin
224
+ ComponentAdded
225
+ ComponentEvent
226
+ ComponentHidden
227
+ ComponentMoved
228
+ ComponentRemoved
229
+ ComponentResized
230
+ ComponentShown
231
+ ConsRHS
232
+ ConsoleLogger
233
+ ConstructingHandler
234
+ ConstructingParser
235
+ Container
236
+ Container.Wrapper
237
+ Container.Wrapper.Content
238
+ ContainerEvent
239
+ ContentModel
240
+ ContentModel.ElemName
241
+ CountedIterator
242
+ CustomObjectInputStream
243
+ DEFAULT
244
+ DFAContentModel
245
+ DTD
246
+ Debug
247
+ Decl
248
+ DefaultDecl
249
+ DefaultEntry
250
+ DefaultMapModel
251
+ DefaultMarkupHandler
252
+ DetWordAutom
253
+ DocCons
254
+ DocGroup
255
+ DocNest
256
+ DocText
257
+ DocType
258
+ Document
259
+ Double
260
+ DoubleLinkedList
261
+ DtdTypeSymbol
262
+ DynamicVariable
263
+ ELEMENTS
264
+ EditDone
265
+ Either
266
+ Either.LeftProjection
267
+ Either.RightProjection
268
+ Elem
269
+ ElemDecl
270
+ ElementValidator
271
+ EmptyMap
272
+ EmptySet
273
+ EntityDecl
274
+ EntityDef
275
+ EntityRef
276
+ Enumeration
277
+ Enumeration.Set32
278
+ Enumeration.Set64
279
+ Enumeration.SetXX
280
+ Enumeration.Val
281
+ Enumeration.Value
282
+ Equiv
283
+ EvComment
284
+ EvElemEnd
285
+ EvElemStart
286
+ EvEntityRef
287
+ EvProcInstr
288
+ EvText
289
+ Event
290
+ Exit
291
+ ExitFun
292
+ Expression.Attrib
293
+ Expression.Child
294
+ Expression.Cond
295
+ Expression.DescOrSelf
296
+ Expression.Equals
297
+ Expression.Exists
298
+ Expression.Expr
299
+ Expression.FExp
300
+ Expression.GenExp
301
+ Expression.NameTest
302
+ Expression.Test
303
+ ExtDef
304
+ ExternalID
305
+ ExternalSources
306
+ FJTaskScheduler2
307
+ FactoryAdapter
308
+ FatalError
309
+ FileChooser
310
+ FlatHashTable
311
+ Float
312
+ FlowPanel
313
+ FocusEvent
314
+ FocusGained
315
+ FocusLost
316
+ FontChanged
317
+ ForegroundChanged
318
+ FormattedTextField
319
+ Frame
320
+ Function0
321
+ Function1
322
+ Function10
323
+ Function11
324
+ Function12
325
+ Function13
326
+ Function14
327
+ Function15
328
+ Function16
329
+ Function17
330
+ Function18
331
+ Function19
332
+ Function2
333
+ Function20
334
+ Function21
335
+ Function22
336
+ Function3
337
+ Function4
338
+ Function5
339
+ Function6
340
+ Function7
341
+ Function8
342
+ Function9
343
+ Future
344
+ GBTree
345
+ GUIApplication
346
+ GridBagPanel
347
+ GridBagPanel.Constraints
348
+ GridPanel
349
+ Group
350
+ HasKeyValue
351
+ HashEntry
352
+ HashMap
353
+ HashSet
354
+ HashTable
355
+ Hashtable
356
+ HedgeRHS
357
+ History
358
+ IScheduler
359
+ Ident
360
+ IdentityHashMap
361
+ ImmutableIterator
362
+ ImmutableMapAdaptor
363
+ ImmutableSetAdaptor
364
+ ImplicitConversions
365
+ Include
366
+ Inclusion
367
+ Index
368
+ IndexedStorage
369
+ InputChannel
370
+ InputEvent
371
+ InsertTree
372
+ Int
373
+ IntDef
374
+ IntMap
375
+ Iterable
376
+ Iterable.Projection
377
+ IterableProxy
378
+ IterableWrapper
379
+ Iterator
380
+ Iterator.PredicatedIterator
381
+ Iterator.TakeWhileIterator
382
+ JavaMapAdaptor
383
+ JavaSerializer
384
+ JavaSetAdaptor
385
+ JavaTokenParsers
386
+ Label
387
+ LabelledRHS
388
+ LayoutContainer
389
+ Left
390
+ Lexer
391
+ Lexical
392
+ LinkToFun
393
+ LinkedHashMap
394
+ LinkedHashSet
395
+ LinkedList
396
+ LinkedListQueueCreator
397
+ List
398
+ ListBuffer
399
+ ListChange
400
+ ListChanged
401
+ ListElementsAdded
402
+ ListElementsRemoved
403
+ ListEvent
404
+ ListMap
405
+ ListMap.Node
406
+ ListQueueCreator
407
+ ListSelectionChanged
408
+ ListSelectionEvent
409
+ ListSet
410
+ ListSet.Node
411
+ ListView
412
+ ListView.AbstractRenderer
413
+ ListView.ModelWrapper
414
+ ListView.Renderer
415
+ ListView.Renderer.Wrapped
416
+ ListView.selection.Indices
417
+ LocalApply0
418
+ Location
419
+ Locator
420
+ Lock
421
+ Logged
422
+ LoggedNodeFactory
423
+ Long
424
+ LongMap
425
+ MIXED
426
+ MailBox
427
+ MainFrame
428
+ MalformedAttributeException
429
+ Map
430
+ Map.Filter
431
+ Map.KeySet
432
+ Map.Lense
433
+ Map.MapTo
434
+ Map.MutableIterableProjection
435
+ Map.Projection
436
+ Map1
437
+ Map2
438
+ Map3
439
+ Map4
440
+ MapProxy
441
+ MapWrapper
442
+ MapWrapper.IteratorWrapper
443
+ MapWrapper.KeySet
444
+ MapWrapper.ValueSet
445
+ Mappable
446
+ Mappable.Mappable
447
+ Mappable.Mapper
448
+ MarkupDecl
449
+ MarkupHandler
450
+ MarkupParser
451
+ MatchError
452
+ Menu
453
+ MenuBar
454
+ MenuItem
455
+ Message
456
+ MessageQueue
457
+ MessageQueueElement
458
+ MetaData
459
+ MouseButtonEvent
460
+ MouseClicked
461
+ MouseDragged
462
+ MouseEntered
463
+ MouseEvent
464
+ MouseExited
465
+ MouseMotionEvent
466
+ MouseMoved
467
+ MousePressed
468
+ MouseReleased
469
+ MouseWheelMoved
470
+ MultiMap
471
+ MutableIterable
472
+ MutableIterable.Filter
473
+ MutableIterable.Map
474
+ MutableIterable.Projection
475
+ MutableIterator
476
+ MutableIterator.Map
477
+ MutableIterator.Wrapper
478
+ MutableList
479
+ MutableSeq
480
+ MutableSeq.DefaultSeqIterator
481
+ MutableSeq.Filter
482
+ MutableSeq.Filter.FilterIterator
483
+ MutableSeq.Map
484
+ MutableSeq.Projection
485
+ NamedSend
486
+ NamespaceBinding
487
+ NetKernel
488
+ NoBindingFactoryAdapter
489
+ Node
490
+ NodeBuffer
491
+ NodeFactory
492
+ NodeSeq
493
+ NodeTraverser
494
+ NonLocalReturnException
495
+ NondetWordAutom
496
+ NotDefinedError
497
+ NotNull
498
+ NotationDecl
499
+ Nothing
500
+ Null
501
+ Number
502
+ ObservableBuffer
503
+ ObservableMap
504
+ ObservableSet
505
+ OffsetPosition
506
+ OpenHashMap
507
+ Option
508
+ Ordered
509
+ Ordering
510
+ Orientable
511
+ Oriented
512
+ OutputChannel
513
+ PCData
514
+ PCDataMarkupParser
515
+ PEReference
516
+ PagedSeq
517
+ PagedSeqReader
518
+ Panel
519
+ ParameterEntityDecl
520
+ ParsedEntityDecl
521
+ Parser
522
+ Parsers
523
+ Parsers.Error
524
+ Parsers.Failure
525
+ Parsers.NoSuccess
526
+ Parsers.OnceParser
527
+ Parsers.ParseResult
528
+ Parsers.Parser
529
+ Parsers.Success
530
+ Parsers.UnitOnceParser
531
+ Parsers.UnitParser
532
+ Parsers.~
533
+ PartialFunction
534
+ PartialOrdering
535
+ PartiallyOrdered
536
+ PasswordField
537
+ PhantomReference
538
+ PointedHedgeExp
539
+ PointedHedgeExp.Node
540
+ PointedHedgeExp.TopIter
541
+ Position
542
+ Positional
543
+ Predef.ArrowAssoc
544
+ Predef.Ensuring
545
+ PrefixedAttribute
546
+ PrettyPrinter
547
+ PrettyPrinter.Box
548
+ PrettyPrinter.BrokenException
549
+ PrettyPrinter.Item
550
+ PrettyPrinter.Para
551
+ PriorityQueue
552
+ PriorityQueueProxy
553
+ ProcInstr
554
+ Product
555
+ Product1
556
+ Product10
557
+ Product11
558
+ Product12
559
+ Product13
560
+ Product14
561
+ Product15
562
+ Product16
563
+ Product17
564
+ Product18
565
+ Product19
566
+ Product2
567
+ Product20
568
+ Product21
569
+ Product22
570
+ Product3
571
+ Product4
572
+ Product5
573
+ Product6
574
+ Product7
575
+ Product8
576
+ Product9
577
+ ProgressBar
578
+ Proxy
579
+ PublicID
580
+ Publisher
581
+ Queue
582
+ QueueModule
583
+ QueueProxy
584
+ RadioButton
585
+ RadioMenuItem
586
+ Random
587
+ RandomAccessSeq
588
+ RandomAccessSeq.Mutable
589
+ RandomAccessSeq.MutableProjection
590
+ RandomAccessSeq.Projection
591
+ RandomAccessSeq.Projection.MapProjection
592
+ RandomAccessSeqProxy
593
+ Range
594
+ Range.Inclusive
595
+ Ranged
596
+ Ranged.Comparator
597
+ Reaction
598
+ Reactions
599
+ Reactions.Impl
600
+ Reactions.StronglyReferenced
601
+ Reactions.Wrapper
602
+ Reactor
603
+ Reader
604
+ RedBlack
605
+ RedBlack.BlackTree
606
+ RedBlack.NonEmpty
607
+ RedBlack.RedTree
608
+ RedBlack.Tree
609
+ RefBuffer
610
+ Reference
611
+ ReferenceQueue
612
+ ReferenceQueue.Wrapper
613
+ ReferenceWrapper
614
+ Regex
615
+ Regex.Match
616
+ Regex.MatchData
617
+ Regex.MatchIterator
618
+ RegexParsers
619
+ RemoteApply0
620
+ Remove
621
+ Reset
622
+ ResizableArray
623
+ Responder
624
+ RevertableHistory
625
+ RewriteRule
626
+ RichBoolean
627
+ RichByte
628
+ RichChar
629
+ RichDouble
630
+ RichException
631
+ RichFloat
632
+ RichInt
633
+ RichLong
634
+ RichShort
635
+ RichSorting
636
+ RichString
637
+ RichStringBuilder
638
+ Right
639
+ RollbackIterator
640
+ RootPanel
641
+ RuleTransformer
642
+ SUnit.Assert
643
+ SUnit.AssertFailed
644
+ SUnit.Test
645
+ SUnit.TestCase
646
+ SUnit.TestConsoleMain
647
+ SUnit.TestFailure
648
+ SUnit.TestResult
649
+ SUnit.TestSuite
650
+ ScalaBeanInfo
651
+ ScalaObject
652
+ Scanner
653
+ Scanners
654
+ Scanners.Scanner
655
+ SchedulerAdapter
656
+ Script
657
+ Scriptable
658
+ ScrollPane
659
+ Scrollable
660
+ SelectionChanged
661
+ SelectionEvent
662
+ SendTo
663
+ Separator
664
+ Seq
665
+ Seq.Projection
666
+ Seq.Projection.ComputeSize
667
+ Seq.Projection.MapProjection
668
+ Seq.singleton
669
+ SeqIterator
670
+ SeqIterator.Map
671
+ SeqProxy
672
+ SequentialContainer
673
+ SequentialContainer.Wrapper
674
+ SerialVersionUID
675
+ Serializer
676
+ Service
677
+ Set
678
+ Set.Filter
679
+ Set.Projection
680
+ Set1
681
+ Set2
682
+ Set3
683
+ Set4
684
+ SetProxy
685
+ SetStorage
686
+ SetWrapper
687
+ Short
688
+ Show
689
+ Show.SymApply
690
+ SimpleApplet
691
+ SimpleGUIApplication
692
+ SimpleTokenizer
693
+ SingleLinkedList
694
+ SingleThreadedScheduler
695
+ Slider
696
+ SoftReference
697
+ Some
698
+ Sorted
699
+ SortedMap
700
+ SortedMap.DefaultKeySet
701
+ SortedMap.Filter
702
+ SortedMap.KeySet
703
+ SortedMap.Lense
704
+ SortedMap.Projection
705
+ SortedMap.Range
706
+ SortedMap.Range.Filter
707
+ SortedMapWrapper
708
+ SortedMapWrapper.KeySet
709
+ SortedMapWrapper.Range
710
+ SortedSet
711
+ SortedSet.Filter
712
+ SortedSet.Projection
713
+ SortedSet.Range
714
+ SortedSetWrapper
715
+ SortedSetWrapper.Range
716
+ Source
717
+ SpecialNode
718
+ SplitPane
719
+ Stack
720
+ Stack.Node
721
+ StackProxy
722
+ StandardTokenParsers
723
+ StaticAnnotation
724
+ StaticAttribute
725
+ StdLexical
726
+ StdTokenParsers
727
+ StdTokens
728
+ StdTokens.Identifier
729
+ StdTokens.Keyword
730
+ StdTokens.NumericLit
731
+ StdTokens.StringLit
732
+ Str
733
+ Stream
734
+ Stream.Definite
735
+ StreamReader
736
+ StringBuilder
737
+ Subscriber
738
+ SubsetConstruction
739
+ Swing.Embossing
740
+ Symbol
741
+ SyncChannel
742
+ SyncVar
743
+ SynchronizedBuffer
744
+ SynchronizedMap
745
+ SynchronizedPriorityQueue
746
+ SynchronizedQueue
747
+ SynchronizedSet
748
+ SynchronizedStack
749
+ SyntaxError
750
+ SystemID
751
+ TabbedPane
752
+ TabbedPane.Page
753
+ Table
754
+ Table.AbstractRenderer
755
+ Table.LabelRenderer
756
+ Table.Renderer
757
+ Table.selection.SelectionSet
758
+ TableChange
759
+ TableChanged
760
+ TableColumnsSelected
761
+ TableEvent
762
+ TableResized
763
+ TableRowsAdded
764
+ TableRowsRemoved
765
+ TableRowsSelected
766
+ TableStructureChanged
767
+ TableUpdated
768
+ TcpService
769
+ TcpServiceWorker
770
+ Tester
771
+ Text
772
+ TextArea
773
+ TextBuffer
774
+ TextComponent
775
+ TextComponent.Caret
776
+ TextComponent.HasColumns
777
+ TextComponent.HasRows
778
+ TextField
779
+ TickedScheduler
780
+ ToggleButton
781
+ TokenParsers
782
+ TokenTests
783
+ Tokens
784
+ Tokens.ErrorToken
785
+ Tokens.Token
786
+ Tree
787
+ TreeHashMap
788
+ TreeMap
789
+ TreeRHS
790
+ TreeSet
791
+ Tuple1
792
+ Tuple10
793
+ Tuple11
794
+ Tuple12
795
+ Tuple13
796
+ Tuple14
797
+ Tuple15
798
+ Tuple16
799
+ Tuple17
800
+ Tuple18
801
+ Tuple19
802
+ Tuple2
803
+ Tuple20
804
+ Tuple21
805
+ Tuple22
806
+ Tuple3
807
+ Tuple4
808
+ Tuple5
809
+ Tuple6
810
+ Tuple7
811
+ Tuple8
812
+ Tuple9
813
+ TypeConstraint
814
+ TypeSymbol
815
+ UIElement
816
+ UIEvent
817
+ UnavailableResourceException
818
+ UnbalancedTreeMap
819
+ UnbalancedTreeMap.Node
820
+ Undoable
821
+ UninitializedError
822
+ UninitializedFieldError
823
+ Unit
824
+ UnlinkFromFun
825
+ Unparsed
826
+ UnparsedEntityDecl
827
+ UnprefixedAttribute
828
+ Update
829
+ ValidatingMarkupHandler
830
+ ValidationException
831
+ ValueChanged
832
+ WeakHashMap
833
+ WeakReference
834
+ WindowActivated
835
+ WindowClosed
836
+ WindowClosing
837
+ WindowDeactivated
838
+ WindowDeiconified
839
+ WindowEvent
840
+ WindowIconified
841
+ WindowOpened
842
+ WordBerrySethi
843
+ WordExp
844
+ WordExp.Label
845
+ WordExp.Letter
846
+ WordExp.Wildcard
847
+ WorkerThread
848
+ WorkerThreadScheduler
849
+ XIncludeException
850
+ XIncludeFilter
851
+ XIncluder
852
+ XMLEvent
853
+ XMLEventReader
854
+ XMLEventReader.Parser
855
+ XhtmlParser
856
+ cloneable
857
+ deprecated
858
+ inline
859
+ jolib.Asynchr
860
+ jolib.Join
861
+ jolib.Signal
862
+ jolib.Synchr
863
+ native
864
+ noinline
865
+ pilib.Chan
866
+ pilib.GP
867
+ pilib.Product
868
+ pilib.Spawn
869
+ pilib.Sum
870
+ pilib.UChan
871
+ pilib.UGP
872
+ remote
873
+ serializable
874
+ throws
875
+ transient
876
+ unchecked
877
+ uncheckedStable
878
+ uncheckedVariance
879
+ unsealed
880
+ volatile
881
+ ~
882
+
883
+ !
884
+ ::
885
+ ANY
886
+ Action
887
+ Action.NoAction
888
+ Action.Trigger
889
+ ActionEvent
890
+ Actor
891
+ ActorGC
892
+ Alignment
893
+ AnyHedgeRHS
894
+ AnyTreeRHS
895
+ Apply0
896
+ Array
897
+ AttListDecl
898
+ AttrDecl
899
+ BackgroundChanged
900
+ Base.Eps
901
+ BigDecimal
902
+ BigDecimal.RoundingMode
903
+ BigInt
904
+ Binders.EmptyBinderEnv
905
+ Binders.UnderBinder
906
+ BorderPanel
907
+ BorderPanel.Position
908
+ Buffer
909
+ BufferedIterator
910
+ BufferedSource
911
+ ButtonApp
912
+ ButtonClicked
913
+ BytePickle
914
+ CaretUpdate
915
+ Cell
916
+ CelsiusConverter
917
+ CelsiusConverter2
918
+ CharArrayReader
919
+ CharSequenceReader
920
+ Collection
921
+ ComboBox
922
+ ComboBox.selection
923
+ ComboBoxes
924
+ Comment
925
+ Component
926
+ Component.Mouse
927
+ ComponentAdded
928
+ ComponentHidden
929
+ ComponentMoved
930
+ ComponentRemoved
931
+ ComponentResized
932
+ ComponentShown
933
+ ConsRHS
934
+ Console
935
+ ConstructingParser
936
+ Container
937
+ ContentModel
938
+ ContentModel.Translator
939
+ ContentModelParser
940
+ Conversions
941
+ CountButton
942
+ DEFAULT
943
+ Debug
944
+ Dialog
945
+ Dialog.Message
946
+ Dialog.Options
947
+ Dialog.Result
948
+ Dialogs
949
+ DocBreak
950
+ DocCons
951
+ DocGroup
952
+ DocNest
953
+ DocNil
954
+ DocText
955
+ DocType
956
+ Document
957
+ ELEMENTS
958
+ EMPTY
959
+ EditDone
960
+ Either
961
+ Elem
962
+ ElemDecl
963
+ EmptyHedgeRHS
964
+ EncodingHeuristics
965
+ End
966
+ EntityRef
967
+ EvComment
968
+ EvElemEnd
969
+ EvElemStart
970
+ EvEntityRef
971
+ EvProcInstr
972
+ EvText
973
+ Exit
974
+ Expression
975
+ Expression.Root
976
+ Expression.WildcardTest
977
+ ExtDef
978
+ FatalError
979
+ FileChooser
980
+ FileChooser.Result
981
+ FileChooser.SelectionMode
982
+ FlowPanel
983
+ FlowPanel.Alignment
984
+ FocusGained
985
+ FocusLost
986
+ FontChanged
987
+ ForegroundChanged
988
+ FormattedTextField
989
+ FormattedTextField.FocusLostBehavior
990
+ FreshNameCreator
991
+ Function
992
+ Futures
993
+ GridBagDemo
994
+ GridBagPanel
995
+ GridBagPanel.Anchor
996
+ GridBagPanel.Fill
997
+ GridPanel
998
+ Group
999
+ HashMap
1000
+ HashSet
1001
+ HelloWorld
1002
+ IMPLIED
1003
+ Ident
1004
+ ImmutableIterator
1005
+ ImmutableIterator.Empty
1006
+ Include
1007
+ Index
1008
+ IntDef
1009
+ IntMap
1010
+ Iterable
1011
+ Iterator
1012
+ JSON
1013
+ Key
1014
+ LabelledRHS
1015
+ Left
1016
+ LinkedHashMap
1017
+ LinkedHashSet
1018
+ List
1019
+ ListChanged
1020
+ ListElementsAdded
1021
+ ListElementsRemoved
1022
+ ListMap
1023
+ ListSelectionChanged
1024
+ ListSet
1025
+ ListView
1026
+ ListView.GenericRenderer
1027
+ ListView.IntervalMode
1028
+ ListView.Renderer
1029
+ ListView.selection
1030
+ ListView.selection.indices
1031
+ ListView.selection.items
1032
+ LocalApply0
1033
+ Location
1034
+ Locator
1035
+ LongMap
1036
+ MIXED
1037
+ Main
1038
+ MakeValidationException
1039
+ MalformedAttributeException
1040
+ Map
1041
+ Marshal
1042
+ Math
1043
+ MetaData
1044
+ MouseClicked
1045
+ MouseDragged
1046
+ MouseEntered
1047
+ MouseExited
1048
+ MouseMoved
1049
+ MousePressed
1050
+ MouseReleased
1051
+ MouseWheelMoved
1052
+ MutableIterable
1053
+ MutableIterator
1054
+ MutableSeq
1055
+ NA
1056
+ NamedSend
1057
+ Nil
1058
+ NoPosition
1059
+ Node
1060
+ NodeSeq
1061
+ None
1062
+ NotationDecl
1063
+ Null
1064
+ Number
1065
+ OffsetPosition
1066
+ OpenHashMap
1067
+ Option
1068
+ Orientation
1069
+ PCDATA
1070
+ PCData
1071
+ PEReference
1072
+ PagedSeq
1073
+ PagedSeqReader
1074
+ ParameterEntityDecl
1075
+ ParsedEntityDecl
1076
+ Parsing
1077
+ Platform
1078
+ PointedHedgeExp.Point
1079
+ Position
1080
+ Predef
1081
+ Predef.Pair
1082
+ Predef.Triple
1083
+ PrettyPrinter.Break
1084
+ ProcInstr
1085
+ Product1
1086
+ Product10
1087
+ Product11
1088
+ Product12
1089
+ Product13
1090
+ Product14
1091
+ Product15
1092
+ Product16
1093
+ Product17
1094
+ Product18
1095
+ Product19
1096
+ Product2
1097
+ Product20
1098
+ Product21
1099
+ Product22
1100
+ Product3
1101
+ Product4
1102
+ Product5
1103
+ Product6
1104
+ Product7
1105
+ Product8
1106
+ Product9
1107
+ Properties
1108
+ PublicID
1109
+ QNode
1110
+ Queue
1111
+ REQUIRED
1112
+ RandomAccessSeq
1113
+ Range
1114
+ Reactions
1115
+ RedBlack.Empty
1116
+ Regex
1117
+ Regex.Match
1118
+ RegexTest
1119
+ RemoteActor
1120
+ RemoteApply0
1121
+ Remove
1122
+ Reset
1123
+ Responder
1124
+ RichString
1125
+ Right
1126
+ SUnit
1127
+ Scheduler
1128
+ SelectionChanged
1129
+ SendTo
1130
+ Seq
1131
+ SequentialContainer
1132
+ Set
1133
+ SimpleApplet.ui
1134
+ Some
1135
+ SortedMap
1136
+ SortedSet
1137
+ Sorting
1138
+ Source
1139
+ Stack
1140
+ Start
1141
+ Str
1142
+ Stream
1143
+ Stream.cons
1144
+ Stream.lazy_::
1145
+ StreamReader
1146
+ StringBuilder
1147
+ Swing
1148
+ Swing.EmptyIcon
1149
+ Swing.Lowered
1150
+ Swing.Raised
1151
+ SwingApp
1152
+ Symbol
1153
+ SystemID
1154
+ TIMEOUT
1155
+ TabbedPane
1156
+ TabbedPane.Layout
1157
+ TabbedPane.pages
1158
+ TabbedPane.selection
1159
+ Table
1160
+ Table.AutoResizeMode
1161
+ Table.ElementMode
1162
+ Table.IntervalMode
1163
+ Table.selection
1164
+ Table.selection.columns
1165
+ Table.selection.rows
1166
+ TableChanged
1167
+ TableColumnsSelected
1168
+ TableResized
1169
+ TableRowsAdded
1170
+ TableRowsRemoved
1171
+ TableRowsSelected
1172
+ TableSelection
1173
+ TableStructureChanged
1174
+ TableUpdated
1175
+ TcpService
1176
+ Terminate
1177
+ Text
1178
+ TextBuffer
1179
+ TextComponent
1180
+ TextComponent.caret
1181
+ Tokens.EOF
1182
+ TopScope
1183
+ TreeHashMap
1184
+ TreeMap
1185
+ TreeSet
1186
+ Tuple1
1187
+ Tuple10
1188
+ Tuple11
1189
+ Tuple12
1190
+ Tuple13
1191
+ Tuple14
1192
+ Tuple15
1193
+ Tuple16
1194
+ Tuple17
1195
+ Tuple18
1196
+ Tuple19
1197
+ Tuple2
1198
+ Tuple20
1199
+ Tuple21
1200
+ Tuple22
1201
+ Tuple3
1202
+ Tuple4
1203
+ Tuple5
1204
+ Tuple6
1205
+ Tuple7
1206
+ Tuple8
1207
+ Tuple9
1208
+ UIDemo
1209
+ UTF8Codec
1210
+ UnbalancedTreeMap
1211
+ UninitializedFieldError
1212
+ Unparsed
1213
+ UnparsedEntityDecl
1214
+ Update
1215
+ Utility
1216
+ ValidationException
1217
+ ValueChanged
1218
+ WindowActivated
1219
+ WindowClosed
1220
+ WindowClosing
1221
+ WindowDeactivated
1222
+ WindowDeiconified
1223
+ WindowIconified
1224
+ WindowOpened
1225
+ XML
1226
+ Xhtml
1227
+ XhtmlEntities
1228
+ XhtmlParser
1229
+ jolib
1230
+ mkTilde
1231
+ ops
1232
+ pilib
1233
+ ~
1234
+
1235
+ ArrayIndexOutOfBoundsException
1236
+ Character
1237
+ Class
1238
+ ClassCastException
1239
+ Error
1240
+ Exception
1241
+ Function
1242
+ IllegalArgumentException
1243
+ IndexOutOfBoundsException
1244
+ Integer
1245
+ Map
1246
+ NoSuchElementException
1247
+ NullPointerException
1248
+ NumberFormatException
1249
+ Pair
1250
+ Runnable
1251
+ RuntimeException
1252
+ Set
1253
+ String
1254
+ StringIndexOutOfBoundsException
1255
+ Throwable
1256
+ Triple
1257
+ Tuple
1258
+ UnsupportedOperationException
1259
+ any2ArrowAssoc
1260
+ any2Ensuring
1261
+ any2stringadd
1262
+ assert
1263
+ assume
1264
+ boolean
1265
+ boolean2Boolean
1266
+ booleanWrapper
1267
+ byte
1268
+ byte2Byte
1269
+ byte2double
1270
+ byte2float
1271
+ byte2int
1272
+ byte2long
1273
+ byte2short
1274
+ byteWrapper
1275
+ char
1276
+ char2Character
1277
+ char2double
1278
+ char2float
1279
+ char2int
1280
+ char2long
1281
+ charWrapper
1282
+ classOf
1283
+ currentThread
1284
+ double
1285
+ double2Double
1286
+ doubleWrapper
1287
+ error
1288
+ exceptionWrapper
1289
+ exit
1290
+ float
1291
+ float2Float
1292
+ float2double
1293
+ floatWrapper
1294
+ forceArrayProjection
1295
+ forceRandomAccessCharSeq
1296
+ format
1297
+ identity
1298
+ int
1299
+ int2Integer
1300
+ int2double
1301
+ int2float
1302
+ int2long
1303
+ intWrapper
1304
+ iterable2ordered
1305
+ lazyStreamToConsable
1306
+ long
1307
+ long2Long
1308
+ long2double
1309
+ long2float
1310
+ longWrapper
1311
+ print
1312
+ printf
1313
+ println
1314
+ readBoolean
1315
+ readByte
1316
+ readChar
1317
+ readDouble
1318
+ readFloat
1319
+ readInt
1320
+ readLine
1321
+ readLong
1322
+ readShort
1323
+ readf
1324
+ readf1
1325
+ readf2
1326
+ readf3
1327
+ require
1328
+ seqToCharSequence
1329
+ short
1330
+ short2Short
1331
+ short2double
1332
+ short2float
1333
+ short2int
1334
+ short2long
1335
+ shortWrapper
1336
+ stringBuilderWrapper
1337
+ stringWrapper
1338
+ tuple22ordered
1339
+ tuple32ordered
1340
+ tuple42ordered
1341
+ tuple52ordered
1342
+ tuple62ordered
1343
+ tuple72ordered
1344
+ tuple82ordered
1345
+ tuple92ordered
1346
+ unit
1347
+ unit2ordered