summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-27 14:31:56 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-27 14:31:56 +0000
commit0e2f5210571d991f9f1dc52af9969a2e2100ab1a (patch)
tree2601eb725ce514cc81bc80f53787bf286ea9d0a7 /NEWS
parent2c0d74b7085edba6557b32a3f48ef8a03d194eb4 (diff)
[DOC]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS21
1 files changed, 9 insertions, 12 deletions
diff --git a/NEWS b/NEWS
index acc78e644b..e4419e6033 100644
--- a/NEWS
+++ b/NEWS
@@ -31,28 +31,25 @@ with all sufficient information, see the ChangeLog file.
=== Core classes updates (outstanding ones only)
-* Bignum
- * New methods
- * Fixnum#bit_length
- * Performance improvement
- * Use GMP if available.
- GMP is used only for several operations:
- multiplication, division, radix conversion, GCD
-
* Binding
* New methods
* Binding#local_variable_get(symbol)
* Binding#local_variable_set(symbol, obj)
* Binding#local_variable_defined?(symbol)
-* Fixnum
- * New methods
- * Fixnum#bit_length
-
* GC
* added environment variable:
* RUBY_HEAP_SLOTS_GROWTH_FACTOR: growth rate of the heap.
+* Integer
+ * New methods
+ * Fixnum#bit_length
+ * Bignum#bit_length
+ * Bignum performance improvement
+ * Use GMP if available.
+ GMP is used only for several operations:
+ multiplication, division, radix conversion, GCD
+
* IO
* extended methods:
* IO#seek supports SEEK_DATA and SEEK_HOLE as whence.