330件ヒット
[1-100件を表示]
(0.154秒)
ライブラリ
- ビルトイン (21)
- monitor (12)
-
net
/ imap (12) - openssl (96)
-
rdoc
/ code _ object (24) -
rdoc
/ context (120) - set (9)
- uri (36)
クラス
- Array (6)
-
MonitorMixin
:: ConditionVariable (12) -
Net
:: IMAP :: FetchData (12) -
OpenSSL
:: Config (96) -
RDoc
:: CodeObject (24) -
RDoc
:: Context (36) -
RDoc
:: Context :: Section (84) - Set (12)
-
URI
:: Generic (36)
モジュール
- Enumerable (12)
キーワード
検索結果
先頭5件
-
RDoc
:: CodeObject # section -> RDoc :: Context :: Section (24419.0) -
所属している section を返します。
...所属している section を返します。... -
OpenSSL
:: Config # section(sec) -> {String => String} (21208.0) -
指定したセクションの設定情報をハッシュで返します。
...指定したセクションの設定情報をハッシュで返します。
ハッシュのキーが設定情報のキー、ハッシュの値が対応する情報となります。
section は obsolete です。[] を使ってください。
@param sec セクションを表す文字列... -
RDoc
:: Context # current _ section -> RDoc :: Context :: Section (15419.0) -
現在の section を返します。
...現在の section を返します。... -
RDoc
:: Context # set _ current _ section(title , comment) -> () (15302.0) -
Handle sections
...Handle sections... -
OpenSSL
:: Config # sections -> [String] (15201.0) -
オブジェクトに含まれる全てのセクション名の配列を返します。
オブジェクトに含まれる全てのセクション名の配列を返します。 -
RDoc
:: Context # sections -> RDoc :: Context :: Section (12318.0) -
追加された RDoc::Context::Section の配列を返します。
...追加された RDoc::Context::Section の配列を返します。... -
RDoc
:: CodeObject # section=(val) (12224.0) -
所属する section を設定します。
...所属する section を設定します。
@param val RDoc::Context::Section オブジェクトを指定します。... -
RDoc
:: Context :: Section # set _ comment(comment) -> () (12213.0) -
自身にコメントを設定します。
...mment 文字列を指定します。
comment の最初の行に :section: を含んでいた場合、その行以降の文字列をコ
メントとして設定します。そうでない場合は comment すべてをコメントとして
設定します。
# ---------------------
# :section: T... -
Array
# intersection(*other _ arrays) -> Array (12201.0) -
自身と引数に渡された配列の共通要素を新しい配列として返します。 要素が重複する場合は、そのうちの1つのみを返します。 要素の順序は自身の順序を維持します。
...合に発生します。
intersectionはObject#hashとObject#eql?を使って比較を行います。
//emlist[例][ruby]{
[1, 1, 3, 5].intersection([3, 2, 1]) # => [1, 3]
["a", "b", "z"].intersection(["a", "b", "c"], ["b"]) # => ["b"]
["a"].intersection......# => ["a"]
//}
@see Set#intersection, Array#&...