るりまサーチ (Ruby 2.3.0)

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

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. rsa n=
  3. rsa n
  4. openssl n
  5. openssl n=

検索結果

Time#hour -> Integer (54625.0)

時を整数で返します。

時を整数で返します。

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

DateTime#hour -> Integer (54607.0)

時間を返します (0-23)。

時間を返します (0-23)。

RSS::Maker::ChannelBase::SkipHoursBase#new_hour (45661.0)

@todo

@todo

新しくhourを作成し,返します.作成された
hourはhourリストの最後
に追加されています.

RSS::Maker::ChannelBase::SkipHoursBase::HourBase#content (45604.0)

@todo

@todo

RSS::Maker::ChannelBase::SkipHoursBase::HourBase#content=() (45604.0)

@todo

@todo

絞り込み条件を変える

RSS::Maker::ChannelBase#skipHours (27304.0)

@todo skipHoursを返します.

@todo
skipHoursを返します.

RSS::Rss::Channel#skipHours (27304.0)

@todo

@todo

RSS::Rss::Channel#skipHours= (27304.0)

@todo

@todo

Time#strftime(format) -> String (412.0)

時刻を format 文字列に従って文字列に変換した結果を返します。

時刻を format 文字列に従って文字列に変換した結果を返します。

@param format フォーマット文字列を指定します。使用できるものは 以下の通りです。

* %A: 曜日の名称(Sunday, Monday ... )
* %a: 曜日の省略名(Sun, Mon ... )
* %B: 月の名称(January, February ... )
* %b: 月の省略名(Jan, Feb ... )
* %C: 世紀 (2009年であれば 20)
* %c: 日付と時刻 (%a %b %e %T %Y)
* %D: 日付 (%m/%d/%y)
* ...