[Ruby on Rails]数値型(Fixnum)のメソッドを確認する19

ordinalize

序数の接尾辞を返却する
active_support/core_ext/integer/inflections.rbのIntegerクラスのインスタンスメソッド
ordinalの数字付き版

to_d

BigDecimalクラスを返却する
bigdecimal/util.rbのIntegerクラスのインスタンスメソッド

multiple_of?

引数の倍数だった場合にtrueを返却する
active_support/core_ext/integer/multiple.rbのIntegerクラスのインスタンスメソッド
中身はこれだけ。

参考

active_support/core_ext/integer/inflections.rb
bigdecimal/util.rb
active_support/core_ext/integer/multiple.rb

スポンサードリンク