るりまサーチ (Ruby 2.3.0)

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

別のキーワード

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

ライブラリ

クラス

検索結果

Date#sunday? -> bool (81607.0)

日曜日なら真を返します。

日曜日なら真を返します。

Time#sunday? -> bool (72625.0)

self の表す時刻が日曜日である場合に true を返します。 そうでない場合に false を返します。

self の表す時刻が日曜日である場合に true を返します。
そうでない場合に false を返します。

//emlist[][ruby]{
t = Time.local(1990, 4, 1) # => 1990-04-01 00:00:00 +0900
p t.sunday? # => true
//}