るりまサーチ

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

別のキーワード

  1. rubygems/user_interaction updated
  2. silentprogressreporter updated
  3. simpleprogressreporter updated
  4. verboseprogressreporter updated
  5. updated

検索結果

Gem::StreamUI::SilentProgressReporter#updated(message) -> nil (18107.0)

何もしません。

...何もしません。

@
param message 指定しても意味がありません。...

Gem::StreamUI::SimpleProgressReporter#updated(message) -> nil (18107.0)

ドットを表示します。

...ドットを表示します。

@
param message 指定しても意味がありません。...

Gem::StreamUI::VerboseProgressReporter#updated(message) -> nil (18107.0)

現在の Gem::StreamUI::VerboseProgressReporter#count と全体の数とメッセージを表示します。

...現在の Gem::StreamUI::VerboseProgressReporter#count と全体の数とメッセージを表示します。

@
param message 表示するメッセージを指定します。...

CSV::Row#[]=(header_or_index, value) (58.0)

ヘッダの名前かインデックスでフィールドを探し、値をセットします。

...なります。
存在しないヘッダを指定すると、新しい要素を末尾に追加します。

@
param header_or_index ヘッダの名前かインデックスを指定します。

@
param value 値を指定します。

//emlist[例 ヘッダの名前で指定][ruby]{
require "csv"

row...
...1_1"
row["header1"] = "updated"
row["header1"] # => "updated"
//}

//emlist[例 ヘッダの index で指定][ruby]{
require "csv"

row = CSV::Row.new(["header1", "header2"], ["row1_1", "row1_2"])

row["header1"] # => "row1_1"
row[0] = "updated"
row["header1"] # => "updated"
//}

//emlist[例 ヘ...
...= CSV::Row.new(["header1", "header2", "header1"], ["row1_1", "row1_2", "row1_3"])

row # => #<CSV::Row "header1":"row1_1" "header2":"row1_2" "header1":"row1_3">
row["header1", 1] = "updated"
row # => #<CSV::Row "header1":"row1_1" "header2":"row1_2" "header1":"updated">
//}


@
see CSV::Row#field...

CSV::Row#[]=(header, offset, value) (33.0)

ヘッダの名前でフィールドを探し、値をセットします。

...ットします。

@
param header ヘッダの名前を指定します。

@
param offset このインデックスより後で、ヘッダの名前を探します。
重複しているヘッダがある場合に便利です。

@
param value 値を指定します。

@
see CSV::Row#field...

絞り込み条件を変える

1.6.8から1.8.0への変更点(まとめ) (18.0)

1.6.8から1.8.0への変更点(まとめ) * ((<1.6.8から1.8.0への変更点(まとめ)/インタプリタの変更>)) * ((<1.6.8から1.8.0への変更点(まとめ)/追加されたクラス/モジュール>)) * ((<1.6.8から1.8.0への変更点(まとめ)/追加されたメソッド>)) * ((<1.6.8から1.8.0への変更点(まとめ)/追加された定数>)) * ((<1.6.8から1.8.0への変更点(まとめ)/拡張されたクラス/メソッド(互換性のある変更)>)) * ((<1.6.8から1.8.0への変更点(まとめ)/変更されたクラス/メソッド(互換性のない変更)>)) * ((<1.6.8から1.8.0への変更点(まとめ)/文法の変更>)) * ((<1.6.8から1.8.0への変更点(まとめ)/正規表現>)) * ((<1.6.8から1.8.0への変更点(まとめ)/Marshal>)) * ((<1.6.8から1.8.0への変更点(まとめ)/Windows 対応>)) * ((<1.6.8から1.8.0への変更点(まとめ)/廃止された(される予定の)機能>)) * ((<1.6.8から1.8.0への変更点(まとめ)/ライブラリ>)) * ((<1.6.8から1.8.0への変更点(まとめ)/拡張ライブラリAPI>)) * ((<1.6.8から1.8.0への変更点(まとめ)/バグ修正>)) * ((<1.6.8から1.8.0への変更点(まとめ)/サポートプラットフォームの追加>))

...することにより定数参照の速度を改善したそうです。
(ChangeLogの
Tue Jun 5 16:15:58 2001 Yukihiro Matsumoto <matz@ruby-lang.org>
に該当するようです)

: break and next [compat]

break, next は、引数を指定することでイテレータや y...
...<iconv>)), ((<tsort>)), ((<StringIO>)), ((<strscan>)),
((<fileutils>)), racc/*

: ((<benchmark>)) [new]
added

: Curses [lib] [compat]

Updated
. New methods and constants for using the mouse, character
attributes, colors and key codes have been added.

: Complex#to_i [lib] [...
...ました。
((<ruby-dev:18278>))

local ||= 1
@
instance ||= 1
$global ||= 1
@
@class ||= 1

=> -:3: warning: global variable `$global' not initialized
-:4: uninitialized class variable @@class in Object (NameError)
ruby 1.6.7 (2002-03-0...