42件ヒット
[1-42件を表示]
(0.079秒)
ライブラリ
- ビルトイン (6)
-
net
/ imap (12) -
rdoc
/ code _ object (24)
クラス
- Array (6)
-
Net
:: IMAP :: FetchData (12) -
RDoc
:: CodeObject (24)
キーワード
- attr (12)
- intersection (6)
- section= (12)
検索結果
先頭4件
-
RDoc
:: CodeObject # section -> RDoc :: Context :: Section (21219.0) -
所属している section を返します。
...所属している section を返します。... -
RDoc
:: CodeObject # section=(val) (9124.0) -
所属する section を設定します。
...所属する section を設定します。
@param val RDoc::Context::Section オブジェクトを指定します。... -
Array
# intersection(*other _ arrays) -> Array (6113.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#&... -
Net
:: IMAP :: FetchData # attr -> { String => object } (132.0) -
各メッセージのアトリビュートの値をハッシュテーブルで返します。
...odyTypeMessage, Net::IMAP::BodyTypeMultipart
のいずれか。
: BODY[<section>]<<partial>>
section で指定されたセクションのボディの内容。文字列。
: BODY.PEEK[<section>]<<partial>>
section で指定されたセクションのメッセージボディの内容。文......字列。
ただしこれで内容を見ても :Seen フラグを設定しない点が
BODY[<section>]と同様
: BODYSTRUCTURE
MIME-IMB でのメッセージボディ。
Net::IMAP::BodyTypeBasic, Net::IMAP::BodyTypeText,
Net::IMAP::BodyTypeMessage, Net::IMAP::BodyTypeMultipart...