266件ヒット
[1-100件を表示]
(0.088秒)
ライブラリ
- ビルトイン (105)
-
irb
/ ext / save-history (12) -
irb
/ inspector (12) - json (12)
-
minitest
/ unit (2) - mkmf (12)
- openssl (24)
- optparse (63)
-
rdoc
/ generator / darkfish (12) -
rdoc
/ generator / ri (12)
クラス
- Enumerator (12)
-
Enumerator
:: Chain (7) -
Enumerator
:: Lazy (24) -
IRB
:: Context (12) -
IRB
:: Inspector (12) -
JSON
:: State (12) - Numeric (62)
-
OpenSSL
:: PKey :: EC :: Point (24) - OptionParser (63)
-
RDoc
:: Generator :: Darkfish (12) -
RDoc
:: Generator :: RI (12)
モジュール
- Kernel (12)
-
MiniTest
:: Assertions (2)
キーワード
-
assert
_ operator (1) -
assert
_ respond _ to (1) -
buffer
_ initial _ length= (12) - chunk (12)
-
create
_ makefile (12) - infinity? (12)
-
init
_ save _ history (12) - initialize (24)
- parse (18)
- parse! (9)
-
set
_ to _ infinity! (12) - size (19)
-
slice
_ before (12) - step (62)
- summarize (24)
-
to
_ a (12)
検索結果
先頭5件
-
IRB
:: Inspector # init -> () (21102.0) -
ライブラリ内部で使用します。
ライブラリ内部で使用します。 -
IRB
:: Context # init _ save _ history -> () (12202.0) -
自身の持つ IRB::InputMethod オブジェクトが irb のヒストリを扱える ようにします。
...自身の持つ IRB::InputMethod オブジェクトが irb のヒストリを扱える
ようにします。
@see IRB::HistorySavingAbility.extended... -
OpenSSL
:: PKey :: EC :: Point # set _ to _ infinity! -> self (12202.0) -
自身を無限遠点に設定します。
...自身を無限遠点に設定します。
@raise OpenSSL::PKey::EC::Point::Error エラーが生じた場合に発生します
@see OpenSSL::PKey::EC::Point#infinity!... -
RDoc
:: Generator :: Darkfish # initialize(store , options) -> RDoc :: Generator :: Darkfish (9301.0) -
RDoc::Generator::Darkfish オブジェクトを初期化します。
...RDoc::Generator::Darkfish オブジェクトを初期化します。
@param store RDoc::Store オブジェクトを指定します。
@param options RDoc::Options オブジェクトを指定します。... -
RDoc
:: Generator :: RI # initialize(store , options) -> RDoc :: Generator :: RI (9301.0) -
RDoc::Generator::RI オブジェクトを初期化します。
...RDoc::Generator::RI オブジェクトを初期化します。
@param store RDoc::Store オブジェクトを指定します。
@param options RDoc::Options オブジェクトを指定します。... -
MiniTest
:: Assertions # assert _ operator(operand1 , operator , operand2 , message = nil) -> true (9201.0) -
与えられたオブジェクトから作成する式を評価した結果が真を返す場合、検査にパスしたことになります。
...が真を返す場合、検査にパスしたことになります。
@param operand1 任意のオブジェクトを指定します。
@param operator 真偽値を返すメソッドを指定します。
@param operand2 任意のオブジェクトを指定します。
@param message 検査に失......結果を使用します。
@raise MiniTest::Assertion 与えられたオブジェクトから作成する式を評価した結果が真でない場合に発生します。
例:
# 以下の二つは同じ
assert_operator('aaa', :==, 'aaa', 'message')
assert('aaa'.__send__(... -
MiniTest
:: Assertions # assert _ respond _ to(object , method _ name , message = nil) -> true (9108.0) -
与えられたオブジェクトが与えられたメソッドを持つ場合、検査にパスしたことになります。
...文字列か Proc を指定します。Proc である場合は Proc#call した
結果を使用します。
@raise MiniTest::Assertion 与えられたオブジェクトが与えられたメソッドを持たない場合に発生します。
@see Object#respond_to?... -
OptionParser
# to _ a -> [String] (6120.0) -
サマリの各行を要素とした配列を返します。
...を返します。
//emlist[例][ruby]{
require "optparse"
opts = OptionParser.new do |opts|
opts.on_head("-i", "--init")
opts.on("-u", "--update")
opts.on_tail("-h", "--help")
end
opts.to_a # => ["Usage: test [options]", " -i, --init\n", " -u, --update\n", " -h, --help\n"]
//}... -
JSON
:: State # buffer _ initial _ length=(length) (6117.0) -
This sets the initial length of the buffer to length, if length > 0, otherwise its value isn't changed.
...This sets the initial length of the buffer to length, if length > 0,
otherwise its value isn't changed.... -
OpenSSL
:: PKey :: EC :: Point # infinity? -> bool (6107.0) -
自身が無限遠点であるならば true を返します。
...自身が無限遠点であるならば true を返します。
@raise OpenSSL::PKey::EC::Point::Error エラーが生じた場合に発生します
@see OpenSSL::PKey::EC::Point#set_to_infinity!... -
Enumerator
:: Lazy # chunk(initial _ state) {|elt , state| . . . } -> Enumerator :: Lazy (3201.0) -
Enumerable#chunk と同じですが、配列ではなく Enumerator::Lazy を返します。
...Enumerable#chunk と同じですが、配列ではなく Enumerator::Lazy を返します。
//emlist[例][ruby]{
1.step.lazy.chunk{ |n| n % 3 == 0 }
# => #<Enumerator::Lazy: #<Enumerator: #<Enumerator::Generator:0x007f8bf18118f0>:each>>
1.step.lazy.chunk{ |n| n % 3 == 0 }.take(5).force
# => [[fa...