330件ヒット
[101-200件を表示]
(0.073秒)
ライブラリ
- ビルトイン (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件
-
Set
# intersection(enum) -> Set (3101.0) -
共通部分、すなわち、2つの集合のいずれにも属するすべての要素からなる 新しい集合を作ります。
共通部分、すなわち、2つの集合のいずれにも属するすべての要素からなる
新しい集合を作ります。
@param enum each メソッドが定義されたオブジェクトを指定します。
@raise ArgumentError 引数 enum に each メソッドが定義されていない場合に
発生します。
//emlist[][ruby]{
require 'set'
s1 = Set[10, 20, 30]
s2 = Set[10, 30, 50]
p s1 & s2 #=> #<Set: {10, 30}>
//}
@see Array#&...ブジェクトを指定します。
@raise ArgumentError 引数 enum に each メソッドが定義されていない場合に
発生します。
//emlist[][ruby]{
require 'set'
s1 = Set[10, 20, 30]
s2 = Set[10, 30, 50]
p s1 & s2 #=> #<Set: {10, 30}>
//}
@see Array#&, Array#intersection... -
RDoc
:: Context :: Section # comment -> String | nil (3017.0) -
section のコメントを返します。
...
section のコメントを返します。... -
RDoc
:: Context :: Section # sequence -> String (3017.0) -
section のシーケンス番号を文字列で返します。
...
section のシーケンス番号を文字列で返します。
リンクを作成する時に使われます。... -
RDoc
:: Context :: Section # title -> String | nil (3017.0) -
section のタイトルを返します。
...
section のタイトルを返します。... -
RDoc
:: Context :: Section # set _ comment(comment) -> () (3013.0) -
自身にコメントを設定します。
...。
comment の最初の行に :section: を含んでいた場合、その行以降の文字列をコ
メントとして設定します。そうでない場合は comment すべてをコメントとして
設定します。
# ---------------------
# :section: The title
# The body
# -------... -
RDoc
:: Context :: Section # ==(other) -> bool (3007.0) -
自身と other のシーケンス番号を比較した結果を返します。
...自身と other のシーケンス番号を比較した結果を返します。
@param other RDoc::Context::Section オブジェクトを指定します。... -
RDoc
:: Context :: Section # inspect -> String (3001.0) -
自身の情報を人間に読みやすい文字列にして返します。
自身の情報を人間に読みやすい文字列にして返します。 -
RDoc
:: Context :: Section # parent -> RDoc :: Context (3001.0) -
自身が所属する RDoc::Context オブジェクトを返します。
自身が所属する RDoc::Context オブジェクトを返します。 -
OpenSSL
:: Config # add _ value(section , name , value) -> String (130.0) -
section で指定したセクションにある name というキーの 情報を value に変更します。
...section で指定したセクションにある name というキーの
情報を value に変更します。
指定した section が存在しない場合には新たにそのセクションが
オブジェクト内に作られます。
指定した name が存在しない場合も同様に新た......ェクト内に作られます。指定した name が存在した場合には
情報が上書きされます。
value を返します。
@param section セクションを表す文字列
@param name キーを表す文字列
@param value 変更後の値の文字列
@raise OpenSSL::ConfigError 設... -
OpenSSL
:: Config # each {|section , key , value| . . . } -> self (114.0) -
オブジェクトに含まれる全ての設定情報を順にブロックに渡し 呼び出します。
...の文字列、の3つです。
require 'openssl'
conf = OpenSSL::Config.load(OpenSSL::Config::DEFAULT_CONFIG_FILE)
conf.each{|section, key, value| p [section, key, value]}
# => ["req_distinguished_name", "countryName", "Country Name (2 letter code)"]
# => ["req_distinguished_name", "coun...