310件ヒット
[1-100件を表示]
(0.062秒)
クラス
- BasicSocket (12)
- Date (72)
-
Encoding
:: Converter (12) - Enumerator (24)
- Integer (12)
- Object (16)
-
OpenSSL
:: OCSP :: BasicResponse (24) -
OpenSSL
:: X509 :: CRL (24) -
Prime
:: EratosthenesGenerator (12) -
Prime
:: PseudoPrimeGenerator (24) -
Prime
:: TrialDivisionGenerator (24) -
REXML
:: Child (36) - ThreadsWait (6)
モジュール
-
REXML
:: Node (12)
キーワード
- >> (12)
-
add
_ status (12) - feed (12)
- getpeereid (12)
-
next
_ day (12) -
next
_ month (12) -
next
_ sibling (12) -
next
_ sibling= (12) -
next
_ sibling _ node (12) -
next
_ update (12) -
next
_ update= (12) -
next
_ wait (6) -
next
_ year (12) - pred (12)
-
previous
_ sibling= (12) -
primitive
_ errinfo (12) - rewind (24)
- status (12)
- succ (36)
-
yield
_ self (16)
検索結果
先頭5件
-
Date
# next -> Date (21202.0) -
翌日の日付オブジェクトを返します。
翌日の日付オブジェクトを返します。 -
Prime
:: PseudoPrimeGenerator # next -> () (21102.0) -
次の擬似素数を返します。 また内部的な位置を進めます。
...次の擬似素数を返します。
また内部的な位置を進めます。
サブクラスで実装してください。
@raise NotImplementedError 必ず発生します。... -
Prime
:: TrialDivisionGenerator # next -> Integer (21102.0) -
次の(擬似)素数を返します。なお、この実装においては擬似素数は真に素数です。
次の(擬似)素数を返します。なお、この実装においては擬似素数は真に素数です。
また内部的な列挙位置を進めます。 -
Date
# next _ day(n = 1) -> Date (15302.0) -
n 日後を返します。
...n 日後を返します。
Date#succ も参照してください。
@param n 日数... -
REXML
:: Node # next _ sibling _ node -> REXML :: Node | nil (15302.0) -
次の兄弟ノードを返します。
次の兄弟ノードを返します。
次の兄弟ノードが存在しない場合(ノードがルートである場合や、
最後のノードである場合)は nil を返します。 -
OpenSSL
:: X509 :: CRL # next _ update=(time) (12208.0) -
CRL の次回更新日時を Time オブジェクトで設定します。
...CRL の次回更新日時を Time オブジェクトで設定します。
@param time 最終更新日時
@raise OpenSSL::X509::CRLError 設定に失敗した場合に発生します
@see OpenSSL::X509::CRL#next_update... -
OpenSSL
:: X509 :: CRL # next _ update -> Time (12202.0) -
CRL の次回更新日時を Time オブジェクトで返します。
CRL の次回更新日時を Time オブジェクトで返します。 -
Date
# next _ year(n = 1) -> Date (9220.0) -
n 年後を返します。
...相当します。
//emlist[例][ruby]{
require 'date'
Date.new(2001,2,3).next_year #=> #<Date: 2002-02-03 ...>
Date.new(2008,2,29).next_year #=> #<Date: 2009-02-28 ...>
Date.new(2008,2,29).next_year(4) #=> #<Date: 2012-02-29 ...>
//}
Date#>> も参照してください。
@param n 年... -
REXML
:: Child # next _ sibling -> REXML :: Node (9214.0) -
次の隣接ノードを返します。
...次の隣接ノードを返します。
REXML::Node#next_sibling_node の別名です。
@see REXML::Child#next_sibling=...