種類
- インスタンスメソッド (192)
- 文書 (57)
ライブラリ
- ビルトイン (48)
-
net
/ http (12) -
rdoc
/ context (60) -
rdoc
/ top _ level (12) -
rubygems
/ dependency _ installer (12) -
rubygems
/ dependency _ list (12) -
rubygems
/ gem _ path _ searcher (24) -
rubygems
/ source _ index (12)
クラス
-
Gem
:: DependencyInstaller (12) -
Gem
:: DependencyList (12) -
Gem
:: GemPathSearcher (24) -
Gem
:: SourceIndex (12) -
Net
:: HTTP (12) -
RDoc
:: Context (60) -
RDoc
:: TopLevel (12)
モジュール
- Enumerable (48)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) -
NEWS for Ruby 2
. 0 . 0 (12) -
NEWS for Ruby 3
. 0 . 0 (5) -
NEWS for Ruby 3
. 1 . 0 (4) - detect (24)
-
find
_ all (12) -
find
_ enclosing _ module _ named (12) -
find
_ local _ symbol (24) -
find
_ module _ named (12) -
find
_ name (24) -
find
_ spec _ by _ name _ and _ version (12) -
find
_ symbol (12) - propfind (12)
-
record
_ location (12) -
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 4 feature (12)
検索結果
先頭5件
- Gem
:: GemPathSearcher # find(path) -> Gem :: Specification | nil - Enumerable
# find(ifnone = nil) -> Enumerator - Enumerable
# find(ifnone = nil) {|item| . . . } -> object - Gem
:: DependencyInstaller # find _ spec _ by _ name _ and _ version(gem _ name , version = Gem :: Requirement . default) -> Array - RDoc
:: Context # find _ enclosing _ module _ named(name) -> RDoc :: NormalModule | nil
-
Gem
:: GemPathSearcher # find(path) -> Gem :: Specification | nil (18207.0) -
与えられたパスにマッチする Gem::Specification を一つだけ返します。
...与えられたパスにマッチする Gem::Specification を一つだけ返します。
@see Enumerable#find... -
Enumerable
# find(ifnone = nil) -> Enumerator (15220.0) -
要素に対してブロックを評価した値が真になった最初の要素を返します。
...らず、ifnone も指定されていないときは nil を返します。
真になる要素が見つからず、ifnone が指定されているときは ifnone を call した結果を返します。
ブロックを省略した場合は Enumerator を返します。
@param ifnone call メソ......y]{
# 最初の 3 の倍数を探す
p [1, 2, 3, 4, 5].find {|i| i % 3 == 0 } # => 3
p [2, 2, 2, 2, 2].find {|i| i % 3 == 0 } # => nil
# ifnone の使用例
ifnone = proc { raise ArgumentError, "item not found" }
p [1, 2, 3, 4, 5].find(ifnone) {|i| i % 7 == 0 }
# ArgumentError: item not fou... -
Enumerable
# find(ifnone = nil) {|item| . . . } -> object (15220.0) -
要素に対してブロックを評価した値が真になった最初の要素を返します。
...らず、ifnone も指定されていないときは nil を返します。
真になる要素が見つからず、ifnone が指定されているときは ifnone を call した結果を返します。
ブロックを省略した場合は Enumerator を返します。
@param ifnone call メソ......y]{
# 最初の 3 の倍数を探す
p [1, 2, 3, 4, 5].find {|i| i % 3 == 0 } # => 3
p [2, 2, 2, 2, 2].find {|i| i % 3 == 0 } # => nil
# ifnone の使用例
ifnone = proc { raise ArgumentError, "item not found" }
p [1, 2, 3, 4, 5].find(ifnone) {|i| i % 7 == 0 }
# ArgumentError: item not fou... -
Gem
:: DependencyInstaller # find _ spec _ by _ name _ and _ version(gem _ name , version = Gem :: Requirement . default) -> Array (12301.0) -
与えられた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と それの存在する URI を含む配列を返します。
...れた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と
それの存在する URI を含む配列を返します。
@param gem_name Gem の名前を指定します。
@param version Gem が満たすバージョンに関する条件を指定します。... -
RDoc
:: Context # find _ enclosing _ module _ named(name) -> RDoc :: NormalModule | nil (9117.0) -
find a module at a higher scope
...
find a module at a higher scope... -
RDoc
:: Context # record _ location(toplevel) (9116.0) -
Record the file that we happen to find it in
...Record the file that we happen to find it in... -
RDoc
:: Context # find _ local _ symbol(symbol) (9101.0) -
Finds a method, constant, attribute, module or files named +symbol+ in this context
...
Finds a method, constant, attribute, module or files named +symbol+ in
this context... -
RDoc
:: Context # find _ module _ named(name) -> RDoc :: NormalModule | nil (9101.0) -
追加された RDoc::NormalModule から引数で指定した名前のモジュール を検索します。見つからなかった場合は nil を返します。
追加された RDoc::NormalModule から引数で指定した名前のモジュール
を検索します。見つからなかった場合は nil を返します。
@param name モジュールの名前を文字列で指定します。 -
RDoc
:: Context # find _ symbol(symbol , method=nil) (9101.0) -
Look up the given symbol. If method is non-nil, then we assume the symbol references a module that contains that method
...Look up the given symbol. If method is non-nil, then we assume
the symbol references a module that contains that method...