るりまサーチ

最速Rubyリファレンスマニュアル検索!
3546件ヒット [1-100件を表示] (0.148秒)
トップページ > クエリ:i[x] > クエリ:end[x] > クエリ:at[x]

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. csv to_i
  5. matrix i

オブジェクト

キーワード

検索結果

<< 1 2 3 ... > >>

Gem::Installer#installation_satisfies_dependency?(dependency) -> bool (27500.0)

登録されているソースインデックスが与えられた依存関係を 満たすことができる場合は、真を返します。そうでない場合は偽を返します。

...登録されているソースインデックスが与えられた依存関係を
満たすことができる場合は、真を返します。そうでない場合は偽を返します。

@param dependency Gem::Dependency のインスタンスを指定します。...

Rake::InvocationChain::EmptyInvocationChain#append(task_name) -> Rake::InvocationChain (24400.0)

与えられた値を追加した Rake::InvocationChain を返します。

...与えられた値を追加した Rake::InvocationChain を返します。

@param task_name 追加する値を指定します。...

MatchData#end(n) -> Integer | nil (24237.0)

n 番目の部分文字列終端のオフセットを返します。

...nil を返します。

@param n 部分文字列を指定する数値。

@raise IndexError 範囲外の n を指定した場合に発生します。

//emlist[例][ruby]{
/(foo)(bar)(BAZ)?/ =~ "foobarbaz"
p $~.end(0) # => 6
p $~.end(1) # => 3
p $~.end(2) # => 6
p $~.end(3) # => nil
p $~.end...
...(4) # => `end': index 4 out of matches (IndexError)
//}

@see MatchData#begin...

Enumerator::ArithmeticSequence#end -> Numeric | nil (24201.0)

末項(終端)を返します。

...末項(終端)を返します。

@see Enumerator::ArithmeticSequence#begin...

Gem::DependencyInstaller#gather_dependencies -> Array (21300.0)

依存関係を無視するように指定されていない限り、インストールするように指定された Gem が依存している Gem の情報を集めて返します。

依存関係を無視するように指定されていない限り、インストールするように指定された
Gem が依存している Gem の情報を集めて返します。

絞り込み条件を変える

Gem::SpecFetcher#find_matching(dependency, all = false, matching_platform = true) -> Array (18700.0)

依存関係を満たす gemspec の名前の配列を返します。

...返します。

@param dependency 依存関係を指定します。
@param all 真を指定するとマッチする全てのバージョンの情報を返します。
@param matching_platform 偽を指定すると全てのプラットフォームの情報を返します。

@see Gem::Dependency...

REXML::Attributes#each_attribute {|attribute| ... } -> () (18406.0)

各属性に対しブロックを呼び出します。

...:Attribute オブジェクトで渡されます。

//emlist[][ruby]{
require 'rexml/document'

doc = REXML::Document.new(<<EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='&lt;'/>
</root>
EOS
a = doc.get_elements("/root/a").fi...
...rst

a.attributes.each_attribute do |attr|
p [attr.namespace, attr.name, attr.value]
end

# => ["http://example.org/foo", "att", "1"]
# => ["http://example.org/bar", "att", "2"]
# => ["", "att", "<"]
//}...

WEBrick::HTTPUtils::FormData#append_data(data) -> self (18300.0)

WEBrick::HTTPUtils の内部で使われます。ユーザがこのメソッドを直接呼ぶことはありません。

...WEBrick::HTTPUtils の内部で使われます。ユーザがこのメソッドを直接呼ぶことはありません。...

JSON::Generator::GeneratorMethods::String::Extend.json_create(hash) -> String (18200.0)

JSON のオブジェクトから Ruby の文字列を生成して返します。

...のオブジェクトから Ruby の文字列を生成して返します。

@param hash キーとして "raw" という文字列を持ち、その値として数値の配列を持つハッシュを指定します。

require 'json'
String.json_create({"raw" => [0x41, 0x42, 0x43]}) # => "ABC"...

Rake::InvocationChain.append(task_name, chain) -> Rake::InvocationChain (15506.0)

与えられたタスク名を第二引数の Rake::InvocationChain に追加します。

...れたタスク名を第二引数の Rake::InvocationChain に追加します。

@param task_name タスク名を指定します。

@param chain 既に存在する Rake::InvocationChain のインスタンスを指定します。

//emlist[][ruby]{
# Rakefile での記載例とする

task default:...
...:test_rake_app
task :test_rake_app do
chain = Rake::InvocationChain::EMPTY
b = Rake::InvocationChain.append("task_a", chain)
b.to_s # => "TOP => task_a"
end

//}...

絞り込み条件を変える

<< 1 2 3 ... > >>