るりまサーチ

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

別のキーワード

  1. socket shut_rd
  2. pstore rd_access
  3. rd scan
  4. rdoc/parser/rd rd
  5. constants shut_rd

ライブラリ

検索結果

Time#saturday? -> bool (6102.0)

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

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

//emlist[][ruby]{
t = Time.local(2006, 6, 10) # => 2006-06-10 00:00:00 +0900
p t.saturday? # => true
//}...