るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
4件ヒット [1-4件を表示] (0.127秒)

別のキーワード

  1. bigdecimal/util to_d
  2. float to_d
  3. rsa d=
  4. rsa d
  5. matrix d

ライブラリ

クラス

検索結果

Date#mday -> Integer (72607.0)

月の日を返します (1-31)。

月の日を返します (1-31)。

Time#mday -> Integer (63625.0)

日を整数で返します。

日を整数で返します。

//emlist[][ruby]{
t = Time.local(2000,1,2,3,4,5) # => 2000-01-02 03:04:05 +0900
p t.day # => 2
p t.mday # => 2
//}

Date#day -> Integer (27307.0)

月の日を返します (1-31)。

月の日を返します (1-31)。

Time#day -> Integer (18325.0)

日を整数で返します。

日を整数で返します。

//emlist[][ruby]{
t = Time.local(2000,1,2,3,4,5) # => 2000-01-02 03:04:05 +0900
p t.day # => 2
p t.mday # => 2
//}