steep 0.11.1 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (299) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +27 -0
  3. data/.gitmodules +3 -0
  4. data/CHANGELOG.md +5 -0
  5. data/README.md +48 -90
  6. data/Rakefile +10 -6
  7. data/Steepfile +1 -0
  8. data/bin/setup +1 -0
  9. data/bin/smoke_runner.rb +9 -14
  10. data/exe/rbs +3 -0
  11. data/exe/ruby-signature +3 -0
  12. data/exe/steep +1 -0
  13. data/lib/steep.rb +32 -26
  14. data/lib/steep/annotation_parser.rb +167 -0
  15. data/lib/steep/ast/annotation/collection.rb +7 -7
  16. data/lib/steep/ast/types.rb +60 -0
  17. data/lib/steep/ast/types/any.rb +1 -1
  18. data/lib/steep/ast/types/factory.rb +535 -0
  19. data/lib/steep/ast/types/name.rb +3 -3
  20. data/lib/steep/ast/types/var.rb +1 -1
  21. data/lib/steep/cli.rb +56 -240
  22. data/lib/steep/drivers/annotations.rb +36 -19
  23. data/lib/steep/drivers/check.rb +55 -91
  24. data/lib/steep/drivers/init.rb +54 -0
  25. data/lib/steep/drivers/langserver.rb +241 -150
  26. data/lib/steep/drivers/print_project.rb +56 -0
  27. data/lib/steep/drivers/signature_error_printer.rb +25 -0
  28. data/lib/steep/drivers/trace_printer.rb +25 -0
  29. data/lib/steep/drivers/utils/driver_helper.rb +26 -0
  30. data/lib/steep/drivers/validate.rb +18 -38
  31. data/lib/steep/drivers/vendor.rb +46 -0
  32. data/lib/steep/drivers/watch.rb +78 -140
  33. data/lib/steep/errors.rb +22 -13
  34. data/lib/steep/interface/interface.rb +91 -0
  35. data/lib/steep/interface/method.rb +0 -4
  36. data/lib/steep/interface/method_type.rb +362 -2
  37. data/lib/steep/interface/substitution.rb +22 -0
  38. data/lib/steep/project.rb +25 -233
  39. data/lib/steep/project/dsl.rb +132 -0
  40. data/lib/steep/project/file.rb +93 -76
  41. data/lib/steep/project/file_loader.rb +63 -0
  42. data/lib/steep/project/options.rb +7 -0
  43. data/lib/steep/project/target.rb +190 -0
  44. data/lib/steep/signature/errors.rb +25 -77
  45. data/lib/steep/signature/validator.rb +122 -0
  46. data/lib/steep/source.rb +12 -7
  47. data/lib/steep/subtyping/check.rb +357 -633
  48. data/lib/steep/subtyping/constraints.rb +2 -2
  49. data/lib/steep/subtyping/trace.rb +23 -0
  50. data/lib/steep/type_construction.rb +509 -455
  51. data/lib/steep/type_inference/constant_env.rb +16 -24
  52. data/lib/steep/type_inference/type_env.rb +26 -18
  53. data/lib/steep/version.rb +1 -1
  54. data/sample/Steepfile +6 -0
  55. data/sample/lib/conference.rb +12 -0
  56. data/sample/sig/conference.rbs +6 -0
  57. data/smoke/alias/Steepfile +4 -0
  58. data/smoke/alias/a.rb +2 -2
  59. data/smoke/alias/{a.rbi → a.rbs} +1 -1
  60. data/smoke/and/Steepfile +4 -0
  61. data/smoke/array/Steepfile +4 -0
  62. data/smoke/array/a.rb +2 -2
  63. data/smoke/array/b.rb +4 -4
  64. data/smoke/array/c.rb +2 -2
  65. data/smoke/block/Steepfile +5 -0
  66. data/smoke/block/{a.rbi → a.rbs} +1 -1
  67. data/smoke/block/{c.rbi → c.rbs} +0 -0
  68. data/smoke/block/d.rb +6 -6
  69. data/smoke/case/Steepfile +4 -0
  70. data/smoke/case/a.rb +4 -3
  71. data/smoke/class/Steepfile +4 -0
  72. data/smoke/class/a.rb +1 -4
  73. data/smoke/class/a.rbs +24 -0
  74. data/smoke/class/h.rb +6 -2
  75. data/smoke/class/{h.rbi → h.rbs} +1 -2
  76. data/smoke/class/i.rb +1 -2
  77. data/smoke/class/i.rbs +9 -0
  78. data/smoke/const/Steepfile +4 -0
  79. data/smoke/dstr/Steepfile +4 -0
  80. data/smoke/ensure/Steepfile +4 -0
  81. data/smoke/ensure/a.rb +1 -1
  82. data/smoke/enumerator/Steepfile +4 -0
  83. data/smoke/enumerator/a.rb +7 -7
  84. data/smoke/enumerator/b.rb +6 -6
  85. data/smoke/extension/Steepfile +4 -0
  86. data/smoke/extension/{a.rbi → a.rbs} +2 -2
  87. data/smoke/extension/{e.rbi → e.rbs} +2 -2
  88. data/smoke/hash/Steepfile +4 -0
  89. data/smoke/hash/{a.rbi → a.rbs} +0 -0
  90. data/smoke/hash/b.rb +2 -2
  91. data/smoke/hash/c.rb +1 -1
  92. data/smoke/hash/e.rbs +3 -0
  93. data/smoke/hash/f.rb +1 -1
  94. data/smoke/hello/Steepfile +4 -0
  95. data/smoke/hello/hello.rbs +7 -0
  96. data/smoke/if/Steepfile +4 -0
  97. data/smoke/implements/Steepfile +4 -0
  98. data/smoke/implements/a.rbs +6 -0
  99. data/smoke/initialize/Steepfile +4 -0
  100. data/smoke/initialize/a.rbs +3 -0
  101. data/smoke/integer/Steepfile +4 -0
  102. data/smoke/integer/a.rb +5 -3
  103. data/smoke/interface/Steepfile +4 -0
  104. data/smoke/interface/{a.rbi → a.rbs} +0 -0
  105. data/smoke/kwbegin/Steepfile +4 -0
  106. data/smoke/lambda/Steepfile +4 -0
  107. data/smoke/lambda/a.rb +9 -2
  108. data/smoke/literal/Steepfile +4 -0
  109. data/smoke/literal/{literal_methods.rbi → literal_methods.rbs} +0 -0
  110. data/smoke/map/Steepfile +4 -0
  111. data/smoke/map/a.rb +1 -1
  112. data/smoke/method/Steepfile +4 -0
  113. data/smoke/method/{a.rbi → a.rbs} +0 -0
  114. data/smoke/method/b.rb +1 -4
  115. data/smoke/method/d.rb +1 -0
  116. data/smoke/method/d.rbs +3 -0
  117. data/smoke/module/Steepfile +4 -0
  118. data/smoke/module/a.rb +1 -1
  119. data/smoke/module/a.rbs +16 -0
  120. data/smoke/module/c.rb +1 -1
  121. data/smoke/regexp/Steepfile +4 -0
  122. data/smoke/regexp/a.rb +2 -2
  123. data/smoke/regexp/b.rb +16 -16
  124. data/smoke/regression/Steepfile +5 -0
  125. data/smoke/regression/array.rb +2 -2
  126. data/smoke/regression/hash.rb +2 -2
  127. data/smoke/regression/poly_new.rb +2 -0
  128. data/smoke/regression/poly_new.rbs +4 -0
  129. data/smoke/regression/set_divide.rb +2 -2
  130. data/smoke/rescue/Steepfile +4 -0
  131. data/smoke/rescue/a.rb +1 -1
  132. data/smoke/self/Steepfile +4 -0
  133. data/smoke/self/a.rbs +4 -0
  134. data/smoke/skip/Steepfile +4 -0
  135. data/smoke/stdout/Steepfile +4 -0
  136. data/smoke/stdout/{a.rbi → a.rbs} +1 -1
  137. data/smoke/super/Steepfile +4 -0
  138. data/smoke/super/a.rbs +10 -0
  139. data/smoke/type_case/Steepfile +4 -0
  140. data/smoke/type_case/a.rb +1 -1
  141. data/smoke/yield/Steepfile +4 -0
  142. data/smoke/yield/a.rb +2 -2
  143. data/steep.gemspec +14 -7
  144. data/vendor/ruby-signature/.github/workflows/ruby.yml +27 -0
  145. data/vendor/ruby-signature/.gitignore +12 -0
  146. data/vendor/ruby-signature/.rubocop.yml +15 -0
  147. data/vendor/ruby-signature/BSDL +22 -0
  148. data/vendor/ruby-signature/COPYING +56 -0
  149. data/vendor/ruby-signature/Gemfile +6 -0
  150. data/vendor/ruby-signature/README.md +93 -0
  151. data/vendor/ruby-signature/Rakefile +66 -0
  152. data/vendor/ruby-signature/bin/annotate-with-rdoc +156 -0
  153. data/vendor/ruby-signature/bin/console +14 -0
  154. data/vendor/ruby-signature/bin/query-rdoc +103 -0
  155. data/vendor/ruby-signature/bin/setup +10 -0
  156. data/vendor/ruby-signature/bin/sort +88 -0
  157. data/vendor/ruby-signature/bin/test_runner.rb +17 -0
  158. data/vendor/ruby-signature/docs/CONTRIBUTING.md +97 -0
  159. data/vendor/ruby-signature/docs/sigs.md +148 -0
  160. data/vendor/ruby-signature/docs/stdlib.md +152 -0
  161. data/vendor/ruby-signature/docs/syntax.md +528 -0
  162. data/vendor/ruby-signature/exe/rbs +3 -0
  163. data/vendor/ruby-signature/exe/ruby-signature +7 -0
  164. data/vendor/ruby-signature/lib/ruby/signature.rb +64 -0
  165. data/vendor/ruby-signature/lib/ruby/signature/ast/annotation.rb +29 -0
  166. data/vendor/ruby-signature/lib/ruby/signature/ast/comment.rb +29 -0
  167. data/vendor/ruby-signature/lib/ruby/signature/ast/declarations.rb +391 -0
  168. data/vendor/ruby-signature/lib/ruby/signature/ast/members.rb +364 -0
  169. data/vendor/ruby-signature/lib/ruby/signature/buffer.rb +52 -0
  170. data/vendor/ruby-signature/lib/ruby/signature/builtin_names.rb +54 -0
  171. data/vendor/ruby-signature/lib/ruby/signature/cli.rb +534 -0
  172. data/vendor/ruby-signature/lib/ruby/signature/constant.rb +28 -0
  173. data/vendor/ruby-signature/lib/ruby/signature/constant_table.rb +152 -0
  174. data/vendor/ruby-signature/lib/ruby/signature/definition.rb +172 -0
  175. data/vendor/ruby-signature/lib/ruby/signature/definition_builder.rb +921 -0
  176. data/vendor/ruby-signature/lib/ruby/signature/environment.rb +283 -0
  177. data/vendor/ruby-signature/lib/ruby/signature/environment_loader.rb +138 -0
  178. data/vendor/ruby-signature/lib/ruby/signature/environment_walker.rb +126 -0
  179. data/vendor/ruby-signature/lib/ruby/signature/errors.rb +189 -0
  180. data/vendor/ruby-signature/lib/ruby/signature/location.rb +104 -0
  181. data/vendor/ruby-signature/lib/ruby/signature/method_type.rb +125 -0
  182. data/vendor/ruby-signature/lib/ruby/signature/namespace.rb +93 -0
  183. data/vendor/ruby-signature/lib/ruby/signature/parser.y +1343 -0
  184. data/vendor/ruby-signature/lib/ruby/signature/prototype/rb.rb +441 -0
  185. data/vendor/ruby-signature/lib/ruby/signature/prototype/rbi.rb +579 -0
  186. data/vendor/ruby-signature/lib/ruby/signature/prototype/runtime.rb +383 -0
  187. data/vendor/ruby-signature/lib/ruby/signature/substitution.rb +48 -0
  188. data/vendor/ruby-signature/lib/ruby/signature/test.rb +28 -0
  189. data/vendor/ruby-signature/lib/ruby/signature/test/errors.rb +63 -0
  190. data/vendor/ruby-signature/lib/ruby/signature/test/hook.rb +290 -0
  191. data/vendor/ruby-signature/lib/ruby/signature/test/setup.rb +58 -0
  192. data/vendor/ruby-signature/lib/ruby/signature/test/spy.rb +324 -0
  193. data/vendor/ruby-signature/lib/ruby/signature/test/test_helper.rb +185 -0
  194. data/vendor/ruby-signature/lib/ruby/signature/test/type_check.rb +256 -0
  195. data/vendor/ruby-signature/lib/ruby/signature/type_name.rb +72 -0
  196. data/vendor/ruby-signature/lib/ruby/signature/types.rb +932 -0
  197. data/vendor/ruby-signature/lib/ruby/signature/variance_calculator.rb +140 -0
  198. data/vendor/ruby-signature/lib/ruby/signature/vendorer.rb +49 -0
  199. data/vendor/ruby-signature/lib/ruby/signature/version.rb +5 -0
  200. data/vendor/ruby-signature/lib/ruby/signature/writer.rb +271 -0
  201. data/vendor/ruby-signature/ruby-signature.gemspec +45 -0
  202. data/vendor/ruby-signature/stdlib/abbrev/abbrev.rbs +3 -0
  203. data/vendor/ruby-signature/stdlib/base64/base64.rbs +15 -0
  204. data/vendor/ruby-signature/stdlib/builtin/array.rbs +1997 -0
  205. data/vendor/ruby-signature/stdlib/builtin/basic_object.rbs +280 -0
  206. data/vendor/ruby-signature/stdlib/builtin/binding.rbs +177 -0
  207. data/vendor/ruby-signature/stdlib/builtin/builtin.rbs +35 -0
  208. data/vendor/ruby-signature/stdlib/builtin/class.rbs +145 -0
  209. data/vendor/ruby-signature/stdlib/builtin/comparable.rbs +116 -0
  210. data/vendor/ruby-signature/stdlib/builtin/complex.rbs +400 -0
  211. data/vendor/ruby-signature/stdlib/builtin/constants.rbs +37 -0
  212. data/vendor/ruby-signature/stdlib/builtin/data.rbs +5 -0
  213. data/vendor/ruby-signature/stdlib/builtin/deprecated.rbs +2 -0
  214. data/vendor/ruby-signature/stdlib/builtin/dir.rbs +419 -0
  215. data/vendor/ruby-signature/stdlib/builtin/encoding.rbs +606 -0
  216. data/vendor/ruby-signature/stdlib/builtin/enumerable.rbs +404 -0
  217. data/vendor/ruby-signature/stdlib/builtin/enumerator.rbs +260 -0
  218. data/vendor/ruby-signature/stdlib/builtin/errno.rbs +781 -0
  219. data/vendor/ruby-signature/stdlib/builtin/errors.rbs +582 -0
  220. data/vendor/ruby-signature/stdlib/builtin/exception.rbs +193 -0
  221. data/vendor/ruby-signature/stdlib/builtin/false_class.rbs +40 -0
  222. data/vendor/ruby-signature/stdlib/builtin/fiber.rbs +68 -0
  223. data/vendor/ruby-signature/stdlib/builtin/fiber_error.rbs +12 -0
  224. data/vendor/ruby-signature/stdlib/builtin/file.rbs +476 -0
  225. data/vendor/ruby-signature/stdlib/builtin/file_test.rbs +59 -0
  226. data/vendor/ruby-signature/stdlib/builtin/float.rbs +696 -0
  227. data/vendor/ruby-signature/stdlib/builtin/gc.rbs +121 -0
  228. data/vendor/ruby-signature/stdlib/builtin/hash.rbs +1029 -0
  229. data/vendor/ruby-signature/stdlib/builtin/integer.rbs +710 -0
  230. data/vendor/ruby-signature/stdlib/builtin/io.rbs +683 -0
  231. data/vendor/ruby-signature/stdlib/builtin/kernel.rbs +574 -0
  232. data/vendor/ruby-signature/stdlib/builtin/marshal.rbs +135 -0
  233. data/vendor/ruby-signature/stdlib/builtin/match_data.rbs +141 -0
  234. data/vendor/ruby-signature/stdlib/builtin/math.rbs +66 -0
  235. data/vendor/ruby-signature/stdlib/builtin/method.rbs +182 -0
  236. data/vendor/ruby-signature/stdlib/builtin/module.rbs +248 -0
  237. data/vendor/ruby-signature/stdlib/builtin/nil_class.rbs +82 -0
  238. data/vendor/ruby-signature/stdlib/builtin/numeric.rbs +409 -0
  239. data/vendor/ruby-signature/stdlib/builtin/object.rbs +824 -0
  240. data/vendor/ruby-signature/stdlib/builtin/proc.rbs +426 -0
  241. data/vendor/ruby-signature/stdlib/builtin/process.rbs +354 -0
  242. data/vendor/ruby-signature/stdlib/builtin/random.rbs +93 -0
  243. data/vendor/ruby-signature/stdlib/builtin/range.rbs +226 -0
  244. data/vendor/ruby-signature/stdlib/builtin/rational.rbs +424 -0
  245. data/vendor/ruby-signature/stdlib/builtin/rb_config.rbs +10 -0
  246. data/vendor/ruby-signature/stdlib/builtin/regexp.rbs +131 -0
  247. data/vendor/ruby-signature/stdlib/builtin/ruby_vm.rbs +14 -0
  248. data/vendor/ruby-signature/stdlib/builtin/signal.rbs +55 -0
  249. data/vendor/ruby-signature/stdlib/builtin/string.rbs +770 -0
  250. data/vendor/ruby-signature/stdlib/builtin/string_io.rbs +13 -0
  251. data/vendor/ruby-signature/stdlib/builtin/struct.rbs +40 -0
  252. data/vendor/ruby-signature/stdlib/builtin/symbol.rbs +230 -0
  253. data/vendor/ruby-signature/stdlib/builtin/thread.rbs +1112 -0
  254. data/vendor/ruby-signature/stdlib/builtin/thread_group.rbs +23 -0
  255. data/vendor/ruby-signature/stdlib/builtin/time.rbs +739 -0
  256. data/vendor/ruby-signature/stdlib/builtin/trace_point.rbs +91 -0
  257. data/vendor/ruby-signature/stdlib/builtin/true_class.rbs +46 -0
  258. data/vendor/ruby-signature/stdlib/builtin/unbound_method.rbs +159 -0
  259. data/vendor/ruby-signature/stdlib/builtin/warning.rbs +17 -0
  260. data/vendor/ruby-signature/stdlib/erb/erb.rbs +18 -0
  261. data/vendor/ruby-signature/stdlib/find/find.rbs +44 -0
  262. data/vendor/ruby-signature/stdlib/pathname/pathname.rbs +21 -0
  263. data/vendor/ruby-signature/stdlib/prime/integer-extension.rbs +23 -0
  264. data/vendor/ruby-signature/stdlib/prime/prime.rbs +188 -0
  265. data/vendor/ruby-signature/stdlib/securerandom/securerandom.rbs +9 -0
  266. data/vendor/ruby-signature/stdlib/set/set.rbs +77 -0
  267. data/vendor/ruby-signature/stdlib/tmpdir/tmpdir.rbs +53 -0
  268. metadata +244 -54
  269. data/.travis.yml +0 -7
  270. data/lib/steep/ast/signature/alias.rb +0 -19
  271. data/lib/steep/ast/signature/class.rb +0 -33
  272. data/lib/steep/ast/signature/const.rb +0 -17
  273. data/lib/steep/ast/signature/env.rb +0 -138
  274. data/lib/steep/ast/signature/extension.rb +0 -21
  275. data/lib/steep/ast/signature/gvar.rb +0 -17
  276. data/lib/steep/ast/signature/interface.rb +0 -31
  277. data/lib/steep/ast/signature/members.rb +0 -115
  278. data/lib/steep/ast/signature/module.rb +0 -21
  279. data/lib/steep/drivers/print_interface.rb +0 -94
  280. data/lib/steep/drivers/scaffold.rb +0 -321
  281. data/lib/steep/drivers/utils/each_signature.rb +0 -31
  282. data/lib/steep/interface/abstract.rb +0 -68
  283. data/lib/steep/interface/builder.rb +0 -637
  284. data/lib/steep/interface/instantiated.rb +0 -163
  285. data/lib/steep/interface/ivar_chain.rb +0 -26
  286. data/lib/steep/parser.y +0 -1278
  287. data/lib/steep/project/listener.rb +0 -53
  288. data/smoke/class/a.rbi +0 -24
  289. data/smoke/class/d.rb +0 -9
  290. data/smoke/class/e.rb +0 -12
  291. data/smoke/class/i.rbi +0 -9
  292. data/smoke/hash/e.rbi +0 -3
  293. data/smoke/hello/hello.rbi +0 -7
  294. data/smoke/implements/a.rbi +0 -6
  295. data/smoke/initialize/a.rbi +0 -3
  296. data/smoke/module/a.rbi +0 -16
  297. data/smoke/self/a.rbi +0 -4
  298. data/smoke/super/a.rbi +0 -10
  299. data/stdlib/builtin.rbi +0 -787
@@ -0,0 +1,59 @@
1
+ # `FileTest` implements file test operations similar to those used in
2
+ # `File::Stat` . It exists as a standalone module, and its methods are
3
+ # also insinuated into the `File` class. (Note that this is not done by
4
+ # inclusion: the interpreter cheats).
5
+ module FileTest
6
+ def self.blockdev?: (String | IO file_name) -> bool
7
+
8
+ def self.chardev?: (String | IO file_name) -> bool
9
+
10
+ def self.directory?: (String | IO file_name) -> bool
11
+
12
+ def self.empty?: (String | IO file_name) -> bool
13
+
14
+ def self.executable?: (String | IO file_name) -> bool
15
+
16
+ def self.executable_real?: (String | IO file_name) -> bool
17
+
18
+ def self.exist?: (String | IO file_name) -> bool
19
+
20
+ def self.exists?: (String | IO file_name) -> bool
21
+
22
+ def self.file?: (String | IO file) -> bool
23
+
24
+ def self.grpowned?: (String | IO file_name) -> bool
25
+
26
+ def self.identical?: (String | IO file_1, String | IO file_2) -> bool
27
+
28
+ def self.owned?: (String | IO file_name) -> bool
29
+
30
+ def self.pipe?: (String | IO file_name) -> bool
31
+
32
+ def self.readable?: (String | IO file_name) -> bool
33
+
34
+ def self.readable_real?: (String | IO file_name) -> bool
35
+
36
+ def self.setgid?: (String | IO file_name) -> bool
37
+
38
+ def self.setuid?: (String | IO file_name) -> bool
39
+
40
+ def self.size: (String | IO file_name) -> Integer
41
+
42
+ def self.size?: (String | IO file_name) -> Integer?
43
+
44
+ def self.socket?: (String | IO file_name) -> bool
45
+
46
+ def self.sticky?: (String | IO file_name) -> bool
47
+
48
+ def self.symlink?: (String | IO file_name) -> bool
49
+
50
+ def self.world_readable?: (String | IO file_name) -> Integer?
51
+
52
+ def self.world_writable?: (String | IO file_name) -> Integer?
53
+
54
+ def self.writable?: (String | IO file_name) -> bool
55
+
56
+ def self.writable_real?: (String | IO file_name) -> bool
57
+
58
+ def self.zero?: (String | IO file_name) -> bool
59
+ end
@@ -0,0 +1,696 @@
1
+ # Float objects represent inexact real numbers using the native architecture's
2
+ # double-precision floating point representation.
3
+ #
4
+ # Floating point has a different arithmetic and is an inexact number. So you
5
+ # should know its esoteric system. See following:
6
+ #
7
+ # * http://docs.sun.com/source/806-3568/ncg_goldberg.html
8
+ # * https://github.com/rdp/ruby_tutorials_core/wiki/Ruby-Talk-FAQ#floats_impre
9
+ # cise
10
+ # * http://en.wikipedia.org/wiki/Floating_point#Accuracy_problems
11
+ #
12
+ #
13
+ class Float < Numeric
14
+ public
15
+
16
+ # Returns the modulo after division of `float` by `other`.
17
+ #
18
+ # 6543.21.modulo(137) #=> 104.21000000000004
19
+ # 6543.21.modulo(137.24) #=> 92.92999999999961
20
+ #
21
+ def %: (Integer) -> Float
22
+ | (Float) -> Float
23
+ | (Rational) -> Float
24
+ | (Numeric) -> Numeric
25
+
26
+ # Returns a new Float which is the product of `float` and `other`.
27
+ #
28
+ def *: (Complex) -> Complex
29
+ | (Numeric) -> Float
30
+
31
+ # Raises `float` to the power of `other`.
32
+ #
33
+ # 2.0**3 #=> 8.0
34
+ #
35
+ def **: (Complex) -> Complex
36
+ | (Numeric) -> Float
37
+
38
+ # Returns a new Float which is the sum of `float` and `other`.
39
+ #
40
+ def +: (Complex) -> Complex
41
+ | (Numeric) -> Float
42
+
43
+ def +@: () -> Float
44
+
45
+ # Returns a new Float which is the difference of `float` and `other`.
46
+ #
47
+ def -: (Complex) -> Complex
48
+ | (Numeric) -> Float
49
+
50
+ # Returns `float`, negated.
51
+ #
52
+ def -@: () -> Float
53
+
54
+ # Returns a new Float which is the result of dividing `float` by `other`.
55
+ #
56
+ def /: (Complex) -> Complex
57
+ | (Numeric) -> Float
58
+
59
+ # Returns `true` if `float` is less than `real`.
60
+ #
61
+ # The result of `NaN < NaN` is undefined, so an implementation-dependent value
62
+ # is returned.
63
+ #
64
+ def <: (Numeric) -> bool
65
+
66
+ # Returns `true` if `float` is less than or equal to `real`.
67
+ #
68
+ # The result of `NaN <= NaN` is undefined, so an implementation-dependent value
69
+ # is returned.
70
+ #
71
+ def <=: (Numeric) -> bool
72
+
73
+ # Returns -1, 0, or +1 depending on whether `float` is less than, equal to, or
74
+ # greater than `real`. This is the basis for the tests in the Comparable module.
75
+ #
76
+ # The result of `NaN <=> NaN` is undefined, so an implementation-dependent value
77
+ # is returned.
78
+ #
79
+ # `nil` is returned if the two values are incomparable.
80
+ #
81
+ def <=>: (Numeric) -> Integer?
82
+
83
+ # Returns `true` only if `obj` has the same value as `float`. Contrast this with
84
+ # Float#eql?, which requires `obj` to be a Float.
85
+ #
86
+ # 1.0 == 1 #=> true
87
+ #
88
+ # The result of `NaN == NaN` is undefined, so an implementation-dependent value
89
+ # is returned.
90
+ #
91
+ def ==: (untyped) -> bool
92
+
93
+ # Returns `true` only if `obj` has the same value as `float`. Contrast this with
94
+ # Float#eql?, which requires `obj` to be a Float.
95
+ #
96
+ # 1.0 == 1 #=> true
97
+ #
98
+ # The result of `NaN == NaN` is undefined, so an implementation-dependent value
99
+ # is returned.
100
+ #
101
+ def ===: (untyped) -> bool
102
+
103
+ # Returns `true` if `float` is greater than `real`.
104
+ #
105
+ # The result of `NaN > NaN` is undefined, so an implementation-dependent value
106
+ # is returned.
107
+ #
108
+ def >: (Numeric) -> bool
109
+
110
+ # Returns `true` if `float` is greater than or equal to `real`.
111
+ #
112
+ # The result of `NaN >= NaN` is undefined, so an implementation-dependent value
113
+ # is returned.
114
+ #
115
+ def >=: (Numeric) -> bool
116
+
117
+ # Returns the absolute value of `float`.
118
+ #
119
+ # (-34.56).abs #=> 34.56
120
+ # -34.56.abs #=> 34.56
121
+ # 34.56.abs #=> 34.56
122
+ #
123
+ # Float#magnitude is an alias for Float#abs.
124
+ #
125
+ def abs: () -> Float
126
+
127
+ def abs2: () -> Float
128
+
129
+ # Returns 0 if the value is positive, pi otherwise.
130
+ #
131
+ def angle: () -> (Integer | Float)
132
+
133
+ # Returns 0 if the value is positive, pi otherwise.
134
+ #
135
+ alias arg angle
136
+
137
+ # Returns the smallest number greater than or equal to `float` with a precision
138
+ # of `ndigits` decimal digits (default: 0).
139
+ #
140
+ # When the precision is negative, the returned value is an integer with at least
141
+ # `ndigits.abs` trailing zeros.
142
+ #
143
+ # Returns a floating point number when `ndigits` is positive, otherwise returns
144
+ # an integer.
145
+ #
146
+ # 1.2.ceil #=> 2
147
+ # 2.0.ceil #=> 2
148
+ # (-1.2).ceil #=> -1
149
+ # (-2.0).ceil #=> -2
150
+ #
151
+ # 1.234567.ceil(2) #=> 1.24
152
+ # 1.234567.ceil(3) #=> 1.235
153
+ # 1.234567.ceil(4) #=> 1.2346
154
+ # 1.234567.ceil(5) #=> 1.23457
155
+ #
156
+ # 34567.89.ceil(-5) #=> 100000
157
+ # 34567.89.ceil(-4) #=> 40000
158
+ # 34567.89.ceil(-3) #=> 35000
159
+ # 34567.89.ceil(-2) #=> 34600
160
+ # 34567.89.ceil(-1) #=> 34570
161
+ # 34567.89.ceil(0) #=> 34568
162
+ # 34567.89.ceil(1) #=> 34567.9
163
+ # 34567.89.ceil(2) #=> 34567.89
164
+ # 34567.89.ceil(3) #=> 34567.89
165
+ #
166
+ # Note that the limited precision of floating point arithmetic might lead to
167
+ # surprising results:
168
+ #
169
+ # (2.1 / 0.7).ceil #=> 4 (!)
170
+ #
171
+ def ceil: () -> Integer
172
+ | (int digits) -> (Integer | Float)
173
+
174
+ def clone: (?freeze: bool) -> self
175
+
176
+ # Returns an array with both `numeric` and `float` represented as Float objects.
177
+ #
178
+ # This is achieved by converting `numeric` to a Float.
179
+ #
180
+ # 1.2.coerce(3) #=> [3.0, 1.2]
181
+ # 2.5.coerce(1.1) #=> [1.1, 2.5]
182
+ #
183
+ def coerce: (Numeric) -> [Numeric, Numeric]
184
+
185
+ def conj: () -> Float
186
+
187
+ def conjugate: () -> Float
188
+
189
+ # Returns the denominator (always positive). The result is machine dependent.
190
+ #
191
+ # See also Float#numerator.
192
+ #
193
+ def denominator: () -> Integer
194
+
195
+ def div: (Numeric) -> Integer
196
+
197
+ # See Numeric#divmod.
198
+ #
199
+ # 42.0.divmod(6) #=> [7, 0.0]
200
+ # 42.0.divmod(5) #=> [8, 2.0]
201
+ #
202
+ def divmod: (Numeric) -> [Numeric, Numeric]
203
+
204
+ def dup: () -> self
205
+
206
+ # Returns `true` only if `obj` is a Float with the same value as `float`.
207
+ # Contrast this with Float#==, which performs type conversions.
208
+ #
209
+ # 1.0.eql?(1) #=> false
210
+ #
211
+ # The result of `NaN.eql?(NaN)` is undefined, so an implementation-dependent
212
+ # value is returned.
213
+ #
214
+ def eql?: (untyped) -> bool
215
+
216
+ # Returns `float / numeric`, same as Float#/.
217
+ #
218
+ def fdiv: (Complex) -> Complex
219
+ | (Numeric) -> Float
220
+
221
+ # Returns `true` if `float` is a valid IEEE floating point number, i.e. it is
222
+ # not infinite and Float#nan? is `false`.
223
+ #
224
+ def finite?: () -> bool
225
+
226
+ # Returns the largest number less than or equal to `float` with a precision of
227
+ # `ndigits` decimal digits (default: 0).
228
+ #
229
+ # When the precision is negative, the returned value is an integer with at least
230
+ # `ndigits.abs` trailing zeros.
231
+ #
232
+ # Returns a floating point number when `ndigits` is positive, otherwise returns
233
+ # an integer.
234
+ #
235
+ # 1.2.floor #=> 1
236
+ # 2.0.floor #=> 2
237
+ # (-1.2).floor #=> -2
238
+ # (-2.0).floor #=> -2
239
+ #
240
+ # 1.234567.floor(2) #=> 1.23
241
+ # 1.234567.floor(3) #=> 1.234
242
+ # 1.234567.floor(4) #=> 1.2345
243
+ # 1.234567.floor(5) #=> 1.23456
244
+ #
245
+ # 34567.89.floor(-5) #=> 0
246
+ # 34567.89.floor(-4) #=> 30000
247
+ # 34567.89.floor(-3) #=> 34000
248
+ # 34567.89.floor(-2) #=> 34500
249
+ # 34567.89.floor(-1) #=> 34560
250
+ # 34567.89.floor(0) #=> 34567
251
+ # 34567.89.floor(1) #=> 34567.8
252
+ # 34567.89.floor(2) #=> 34567.89
253
+ # 34567.89.floor(3) #=> 34567.89
254
+ #
255
+ # Note that the limited precision of floating point arithmetic might lead to
256
+ # surprising results:
257
+ #
258
+ # (0.3 / 0.1).floor #=> 2 (!)
259
+ #
260
+ def floor: () -> Integer
261
+ | (int digits) -> (Integer | Numeric)
262
+
263
+ # Returns a hash code for this float.
264
+ #
265
+ # See also Object#hash.
266
+ #
267
+ def hash: () -> Integer
268
+
269
+ def i: () -> Complex
270
+
271
+ def imag: () -> Integer
272
+
273
+ def imaginary: () -> Integer
274
+
275
+ # Returns `nil`, -1, or 1 depending on whether the value is finite, `-Infinity`,
276
+ # or `+Infinity`.
277
+ #
278
+ # (0.0).infinite? #=> nil
279
+ # (-1.0/0.0).infinite? #=> -1
280
+ # (+1.0/0.0).infinite? #=> 1
281
+ #
282
+ def infinite?: () -> Integer?
283
+
284
+ alias inspect to_s
285
+
286
+ def integer?: () -> bool
287
+
288
+ # Returns the absolute value of `float`.
289
+ #
290
+ # (-34.56).abs #=> 34.56
291
+ # -34.56.abs #=> 34.56
292
+ # 34.56.abs #=> 34.56
293
+ #
294
+ # Float#magnitude is an alias for Float#abs.
295
+ #
296
+ alias magnitude abs
297
+
298
+ # Returns the modulo after division of `float` by `other`.
299
+ #
300
+ # 6543.21.modulo(137) #=> 104.21000000000004
301
+ # 6543.21.modulo(137.24) #=> 92.92999999999961
302
+ #
303
+ def modulo: (Numeric) -> Float
304
+
305
+ # Returns `true` if `float` is an invalid IEEE floating point number.
306
+ #
307
+ # a = -1.0 #=> -1.0
308
+ # a.nan? #=> false
309
+ # a = 0.0/0.0 #=> NaN
310
+ # a.nan? #=> true
311
+ #
312
+ def nan?: () -> bool
313
+
314
+ # Returns `true` if `float` is less than 0.
315
+ #
316
+ def negative?: () -> bool
317
+
318
+ # Returns the next representable floating point number.
319
+ #
320
+ # Float::MAX.next_float and Float::INFINITY.next_float is Float::INFINITY.
321
+ #
322
+ # Float::NAN.next_float is Float::NAN.
323
+ #
324
+ # For example:
325
+ #
326
+ # 0.01.next_float #=> 0.010000000000000002
327
+ # 1.0.next_float #=> 1.0000000000000002
328
+ # 100.0.next_float #=> 100.00000000000001
329
+ #
330
+ # 0.01.next_float - 0.01 #=> 1.734723475976807e-18
331
+ # 1.0.next_float - 1.0 #=> 2.220446049250313e-16
332
+ # 100.0.next_float - 100.0 #=> 1.4210854715202004e-14
333
+ #
334
+ # f = 0.01; 20.times { printf "%-20a %s\n", f, f.to_s; f = f.next_float }
335
+ # #=> 0x1.47ae147ae147bp-7 0.01
336
+ # # 0x1.47ae147ae147cp-7 0.010000000000000002
337
+ # # 0x1.47ae147ae147dp-7 0.010000000000000004
338
+ # # 0x1.47ae147ae147ep-7 0.010000000000000005
339
+ # # 0x1.47ae147ae147fp-7 0.010000000000000007
340
+ # # 0x1.47ae147ae148p-7 0.010000000000000009
341
+ # # 0x1.47ae147ae1481p-7 0.01000000000000001
342
+ # # 0x1.47ae147ae1482p-7 0.010000000000000012
343
+ # # 0x1.47ae147ae1483p-7 0.010000000000000014
344
+ # # 0x1.47ae147ae1484p-7 0.010000000000000016
345
+ # # 0x1.47ae147ae1485p-7 0.010000000000000018
346
+ # # 0x1.47ae147ae1486p-7 0.01000000000000002
347
+ # # 0x1.47ae147ae1487p-7 0.010000000000000021
348
+ # # 0x1.47ae147ae1488p-7 0.010000000000000023
349
+ # # 0x1.47ae147ae1489p-7 0.010000000000000024
350
+ # # 0x1.47ae147ae148ap-7 0.010000000000000026
351
+ # # 0x1.47ae147ae148bp-7 0.010000000000000028
352
+ # # 0x1.47ae147ae148cp-7 0.01000000000000003
353
+ # # 0x1.47ae147ae148dp-7 0.010000000000000031
354
+ # # 0x1.47ae147ae148ep-7 0.010000000000000033
355
+ #
356
+ # f = 0.0
357
+ # 100.times { f += 0.1 }
358
+ # f #=> 9.99999999999998 # should be 10.0 in the ideal world.
359
+ # 10-f #=> 1.9539925233402755e-14 # the floating point error.
360
+ # 10.0.next_float-10 #=> 1.7763568394002505e-15 # 1 ulp (unit in the last place).
361
+ # (10-f)/(10.0.next_float-10) #=> 11.0 # the error is 11 ulp.
362
+ # (10-f)/(10*Float::EPSILON) #=> 8.8 # approximation of the above.
363
+ # "%a" % 10 #=> "0x1.4p+3"
364
+ # "%a" % f #=> "0x1.3fffffffffff5p+3" # the last hex digit is 5. 16 - 5 = 11 ulp.
365
+ #
366
+ def next_float: () -> Float
367
+
368
+ def nonzero?: () -> self?
369
+
370
+ # Returns the numerator. The result is machine dependent.
371
+ #
372
+ # n = 0.3.numerator #=> 5404319552844595
373
+ # d = 0.3.denominator #=> 18014398509481984
374
+ # n.fdiv(d) #=> 0.3
375
+ #
376
+ # See also Float#denominator.
377
+ #
378
+ def numerator: () -> Integer
379
+
380
+ # Returns 0 if the value is positive, pi otherwise.
381
+ #
382
+ alias phase angle
383
+
384
+ def polar: () -> [ Float, Integer | Float ]
385
+
386
+ # Returns `true` if `float` is greater than 0.
387
+ #
388
+ def positive?: () -> bool
389
+
390
+ # Returns the previous representable floating point number.
391
+ #
392
+ # (-Float::MAX).prev_float and (-Float::INFINITY).prev_float is
393
+ # -Float::INFINITY.
394
+ #
395
+ # Float::NAN.prev_float is Float::NAN.
396
+ #
397
+ # For example:
398
+ #
399
+ # 0.01.prev_float #=> 0.009999999999999998
400
+ # 1.0.prev_float #=> 0.9999999999999999
401
+ # 100.0.prev_float #=> 99.99999999999999
402
+ #
403
+ # 0.01 - 0.01.prev_float #=> 1.734723475976807e-18
404
+ # 1.0 - 1.0.prev_float #=> 1.1102230246251565e-16
405
+ # 100.0 - 100.0.prev_float #=> 1.4210854715202004e-14
406
+ #
407
+ # f = 0.01; 20.times { printf "%-20a %s\n", f, f.to_s; f = f.prev_float }
408
+ # #=> 0x1.47ae147ae147bp-7 0.01
409
+ # # 0x1.47ae147ae147ap-7 0.009999999999999998
410
+ # # 0x1.47ae147ae1479p-7 0.009999999999999997
411
+ # # 0x1.47ae147ae1478p-7 0.009999999999999995
412
+ # # 0x1.47ae147ae1477p-7 0.009999999999999993
413
+ # # 0x1.47ae147ae1476p-7 0.009999999999999992
414
+ # # 0x1.47ae147ae1475p-7 0.00999999999999999
415
+ # # 0x1.47ae147ae1474p-7 0.009999999999999988
416
+ # # 0x1.47ae147ae1473p-7 0.009999999999999986
417
+ # # 0x1.47ae147ae1472p-7 0.009999999999999985
418
+ # # 0x1.47ae147ae1471p-7 0.009999999999999983
419
+ # # 0x1.47ae147ae147p-7 0.009999999999999981
420
+ # # 0x1.47ae147ae146fp-7 0.00999999999999998
421
+ # # 0x1.47ae147ae146ep-7 0.009999999999999978
422
+ # # 0x1.47ae147ae146dp-7 0.009999999999999976
423
+ # # 0x1.47ae147ae146cp-7 0.009999999999999974
424
+ # # 0x1.47ae147ae146bp-7 0.009999999999999972
425
+ # # 0x1.47ae147ae146ap-7 0.00999999999999997
426
+ # # 0x1.47ae147ae1469p-7 0.009999999999999969
427
+ # # 0x1.47ae147ae1468p-7 0.009999999999999967
428
+ #
429
+ def prev_float: () -> Float
430
+
431
+ # Returns `float / numeric`, same as Float#/.
432
+ #
433
+ def quo: (Complex) -> Complex
434
+ | (Numeric) -> Float
435
+
436
+ # Returns a simpler approximation of the value (flt-|eps| <= result <=
437
+ # flt+|eps|). If the optional argument `eps` is not given, it will be chosen
438
+ # automatically.
439
+ #
440
+ # 0.3.rationalize #=> (3/10)
441
+ # 1.333.rationalize #=> (1333/1000)
442
+ # 1.333.rationalize(0.01) #=> (4/3)
443
+ #
444
+ # See also Float#to_r.
445
+ #
446
+ def rationalize: (?Numeric eps) -> Rational
447
+
448
+ def real: () -> Float
449
+
450
+ def real?: () -> true
451
+
452
+ def rect: () -> [ Float, Numeric ]
453
+
454
+ alias rectangular rect
455
+
456
+ def remainder: (Numeric) -> Float
457
+
458
+ # Returns `float` rounded to the nearest value with a precision of `ndigits`
459
+ # decimal digits (default: 0).
460
+ #
461
+ # When the precision is negative, the returned value is an integer with at least
462
+ # `ndigits.abs` trailing zeros.
463
+ #
464
+ # Returns a floating point number when `ndigits` is positive, otherwise returns
465
+ # an integer.
466
+ #
467
+ # 1.4.round #=> 1
468
+ # 1.5.round #=> 2
469
+ # 1.6.round #=> 2
470
+ # (-1.5).round #=> -2
471
+ #
472
+ # 1.234567.round(2) #=> 1.23
473
+ # 1.234567.round(3) #=> 1.235
474
+ # 1.234567.round(4) #=> 1.2346
475
+ # 1.234567.round(5) #=> 1.23457
476
+ #
477
+ # 34567.89.round(-5) #=> 0
478
+ # 34567.89.round(-4) #=> 30000
479
+ # 34567.89.round(-3) #=> 35000
480
+ # 34567.89.round(-2) #=> 34600
481
+ # 34567.89.round(-1) #=> 34570
482
+ # 34567.89.round(0) #=> 34568
483
+ # 34567.89.round(1) #=> 34567.9
484
+ # 34567.89.round(2) #=> 34567.89
485
+ # 34567.89.round(3) #=> 34567.89
486
+ #
487
+ # If the optional `half` keyword argument is given, numbers that are half-way
488
+ # between two possible rounded values will be rounded according to the specified
489
+ # tie-breaking `mode`:
490
+ #
491
+ # * `:up` or `nil`: round half away from zero (default)
492
+ # * `:down`: round half toward zero
493
+ # * `:even`: round half toward the nearest even number
494
+ #
495
+ # 2.5.round(half: :up) #=> 3
496
+ # 2.5.round(half: :down) #=> 2
497
+ # 2.5.round(half: :even) #=> 2
498
+ # 3.5.round(half: :up) #=> 4
499
+ # 3.5.round(half: :down) #=> 3
500
+ # 3.5.round(half: :even) #=> 4
501
+ # (-2.5).round(half: :up) #=> -3
502
+ # (-2.5).round(half: :down) #=> -2
503
+ # (-2.5).round(half: :even) #=> -2
504
+ #
505
+ def round: (?half: :up | :down | :even) -> Integer
506
+ | (int digits, ?half: :up | :down | :even) -> (Integer | Float)
507
+
508
+ def step: (?Numeric limit, ?Numeric step) { (Float) -> void } -> self
509
+ | (?Numeric limit, ?Numeric step) -> Enumerator[Float, self]
510
+ | (?by: Numeric, ?to: Numeric) { (Float) -> void } -> self
511
+ | (?by: Numeric, ?to: Numeric) -> Enumerator[Float, self]
512
+
513
+ def to_c: () -> Complex
514
+
515
+ # Since `float` is already a Float, returns `self`.
516
+ #
517
+ def to_f: () -> Float
518
+
519
+ # Returns the `float` truncated to an Integer.
520
+ #
521
+ # 1.2.to_i #=> 1
522
+ # (-1.2).to_i #=> -1
523
+ #
524
+ # Note that the limited precision of floating point arithmetic might lead to
525
+ # surprising results:
526
+ #
527
+ # (0.3 / 0.1).to_i #=> 2 (!)
528
+ #
529
+ # #to_int is an alias for #to_i.
530
+ #
531
+ def to_i: () -> Integer
532
+
533
+ # Returns the `float` truncated to an Integer.
534
+ #
535
+ # 1.2.to_i #=> 1
536
+ # (-1.2).to_i #=> -1
537
+ #
538
+ # Note that the limited precision of floating point arithmetic might lead to
539
+ # surprising results:
540
+ #
541
+ # (0.3 / 0.1).to_i #=> 2 (!)
542
+ #
543
+ # #to_int is an alias for #to_i.
544
+ #
545
+ alias to_int to_i
546
+
547
+ # Returns the value as a rational.
548
+ #
549
+ # 2.0.to_r #=> (2/1)
550
+ # 2.5.to_r #=> (5/2)
551
+ # -0.75.to_r #=> (-3/4)
552
+ # 0.0.to_r #=> (0/1)
553
+ # 0.3.to_r #=> (5404319552844595/18014398509481984)
554
+ #
555
+ # NOTE: 0.3.to_r isn't the same as "0.3".to_r. The latter is equivalent to
556
+ # "3/10".to_r, but the former isn't so.
557
+ #
558
+ # 0.3.to_r == 3/10r #=> false
559
+ # "0.3".to_r == 3/10r #=> true
560
+ #
561
+ # See also Float#rationalize.
562
+ #
563
+ def to_r: () -> Rational
564
+
565
+ # Returns a string containing a representation of `self`. As well as a fixed or
566
+ # exponential form of the `float`, the call may return `NaN`, `Infinity`, and
567
+ # `-Infinity`.
568
+ #
569
+ def to_s: () -> String
570
+
571
+ # Returns `float` truncated (toward zero) to a precision of `ndigits` decimal
572
+ # digits (default: 0).
573
+ #
574
+ # When the precision is negative, the returned value is an integer with at least
575
+ # `ndigits.abs` trailing zeros.
576
+ #
577
+ # Returns a floating point number when `ndigits` is positive, otherwise returns
578
+ # an integer.
579
+ #
580
+ # 2.8.truncate #=> 2
581
+ # (-2.8).truncate #=> -2
582
+ # 1.234567.truncate(2) #=> 1.23
583
+ # 34567.89.truncate(-2) #=> 34500
584
+ #
585
+ # Note that the limited precision of floating point arithmetic might lead to
586
+ # surprising results:
587
+ #
588
+ # (0.3 / 0.1).truncate #=> 2 (!)
589
+ #
590
+ def truncate: () -> Integer
591
+ | (Integer ndigits) -> (Integer | Float)
592
+
593
+ # Returns `true` if `float` is 0.0.
594
+ #
595
+ def zero?: () -> bool
596
+ end
597
+
598
+ # The minimum number of significant decimal digits in a double-precision
599
+ # floating point.
600
+ #
601
+ # Usually defaults to 15.
602
+ #
603
+ Float::DIG: Integer
604
+
605
+ # The difference between 1 and the smallest double-precision floating point
606
+ # number greater than 1.
607
+ #
608
+ # Usually defaults to 2.2204460492503131e-16.
609
+ #
610
+ Float::EPSILON: Float
611
+
612
+ # An expression representing positive infinity.
613
+ #
614
+ Float::INFINITY: Float
615
+
616
+ # The number of base digits for the `double` data type.
617
+ #
618
+ # Usually defaults to 53.
619
+ #
620
+ Float::MANT_DIG: Integer
621
+
622
+ # The largest possible integer in a double-precision floating point number.
623
+ #
624
+ # Usually defaults to 1.7976931348623157e+308.
625
+ #
626
+ Float::MAX: Float
627
+
628
+ # The largest positive exponent in a double-precision floating point where 10
629
+ # raised to this power minus 1.
630
+ #
631
+ # Usually defaults to 308.
632
+ #
633
+ Float::MAX_10_EXP: Integer
634
+
635
+ # The largest possible exponent value in a double-precision floating point.
636
+ #
637
+ # Usually defaults to 1024.
638
+ #
639
+ Float::MAX_EXP: Integer
640
+
641
+ # The smallest positive normalized number in a double-precision floating point.
642
+ #
643
+ # Usually defaults to 2.2250738585072014e-308.
644
+ #
645
+ # If the platform supports denormalized numbers, there are numbers between zero
646
+ # and Float::MIN. 0.0.next_float returns the smallest positive floating point
647
+ # number including denormalized numbers.
648
+ #
649
+ Float::MIN: Float
650
+
651
+ # The smallest negative exponent in a double-precision floating point where 10
652
+ # raised to this power minus 1.
653
+ #
654
+ # Usually defaults to -307.
655
+ #
656
+ Float::MIN_10_EXP: Integer
657
+
658
+ # The smallest possible exponent value in a double-precision floating point.
659
+ #
660
+ # Usually defaults to -1021.
661
+ #
662
+ Float::MIN_EXP: Integer
663
+
664
+ # An expression representing a value which is "not a number".
665
+ #
666
+ Float::NAN: Float
667
+
668
+ # The base of the floating point, or number of unique digits used to represent
669
+ # the number.
670
+ #
671
+ # Usually defaults to 2 on most systems, which would represent a base-10
672
+ # decimal.
673
+ #
674
+ Float::RADIX: Integer
675
+
676
+ # Deprecated, do not use.
677
+ #
678
+ # Represents the rounding mode for floating point addition at the start time.
679
+ #
680
+ # Usually defaults to 1, rounding to the nearest number.
681
+ #
682
+ # Other modes include:
683
+ #
684
+ # -1
685
+ # : Indeterminable
686
+ # 0
687
+ # : Rounding towards zero
688
+ # 1
689
+ # : Rounding to the nearest number
690
+ # 2
691
+ # : Rounding towards positive infinity
692
+ # 3
693
+ # : Rounding towards negative infinity
694
+ #
695
+ #
696
+ Float::ROUNDS: Integer