1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2013-09-27 14:31:56 +00:00
parent 2c0d74b708
commit 0e2f521057

21
NEWS
View file

@ -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.