最速Rubyリファレンスマニュアル検索!
すべて(204)
2.1.0(17)
2.2.0(17)
2.3.0(17)
2.4.0(17)
2.5.0(17)
2.6.0(17)
2.7.0(17)
3.0(17)
3.1(17)
3.2(17)
3.3(17)
3.4(17)
204件ヒット
[201-204件を表示]
(0.074秒)
トップページ
>
:
Ruby
>
:
インスタンスメソッド
>
:
ruby
>
:modulo
別のキーワード
fiddle ruby_free
rbconfig ruby
fiddle build_ruby_platform
rake ruby
rubygems/defaults ruby_engine
ライブラリ
ビルトイン
(180)
bigdecimal
(24)
クラス
BigDecimal
(24)
Float
(36)
Integer
(84)
Numeric
(60)
キーワード
%
(48)
**
(12)
div
(24)
divmod
(24)
pow
(24)
remainder
(24)
検索結果
先頭1件
Integer
#
%(other) -> Numeric
<<
<
1
2
3
>>
Integer
#
%(other) -> Numeric
(14.0)
2.2.0
2.6.0
3.3
3.4
インスタンスメソッド
算術演算子。剰余を計算します。
...
算術演算子。剰余を計算します。
//emlist[][
ruby
]{
13 % 4 # => 1
13 % -4 # => -3
-13 % 4 # => 3
-13 % -4 # => -1
//}
@param other 二項演算の右側の引数(対象)
@return 計算結果
...
Integer
<<
<
1
2
3
>>