mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[DOC] update Integer#<< doc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
06ca50338b
commit
68c661b8e5
2 changed files with 2 additions and 9 deletions
7
bignum.c
7
bignum.c
|
@ -6711,13 +6711,6 @@ rb_big_xor(VALUE x, VALUE y)
|
||||||
return bignorm(z);
|
return bignorm(z);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* call-seq:
|
|
||||||
* big << numeric -> integer
|
|
||||||
*
|
|
||||||
* Shifts big left _numeric_ positions (right if _numeric_ is negative).
|
|
||||||
*/
|
|
||||||
|
|
||||||
VALUE
|
VALUE
|
||||||
rb_big_lshift(VALUE x, VALUE y)
|
rb_big_lshift(VALUE x, VALUE y)
|
||||||
{
|
{
|
||||||
|
|
|
@ -3963,9 +3963,9 @@ fix_lshift(long val, unsigned long width)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* call-seq:
|
* call-seq:
|
||||||
* fix << count -> integer
|
* int << count -> integer
|
||||||
*
|
*
|
||||||
* Shifts +fix+ left +count+ positions, or right if +count+ is negative.
|
* Shifts +int+ left +count+ positions, or right if +count+ is negative.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
|
|
Loading…
Reference in a new issue