We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://bugs.ruby-lang.org/issues/3859 の件です。
Fixnum#size と Bignum#size にわかれていて、Integer のメソッドしては存在しないため見つかりません。
Fixnum#size
Bignum#size
Integer
継承関係にあるクラスでも探してもらえると便利かと思ったのですが、どうでしょうか。
The text was updated successfully, but these errors were encountered:
Integer#size は存在しないみたいなので、見つからないほうがいいんじゃないかなぁと思いました。
Integer#size
% ruby -ve 'Integer.instance_method(:size)' ruby 2.1.4p265 (2014-10-27) [x86_64-linux-gnu] -e:1:in `instance_method': undefined method `size' for class `Integer' (NameError) from -e:1:in `<main>'
Sorry, something went wrong.
No branches or pull requests
https://bugs.ruby-lang.org/issues/3859 の件です。
Fixnum#size
とBignum#size
にわかれていて、Integer
のメソッドしては存在しないため見つかりません。継承関係にあるクラスでも探してもらえると便利かと思ったのですが、どうでしょうか。
The text was updated successfully, but these errors were encountered: