るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.013秒)

別のキーワード

  1. _builtin replace
  2. dbm replace
  3. resolv-replace new
  4. set replace
  5. gdbm replace

ライブラリ

検索結果

Array#replace(another) -> self (18109.0)

配列の内容を配列 another の内容で置き換えます。

...よる暗黙の型変換を試みます。

@raise TypeError 引数に配列以外の(暗黙の型変換が行えない)オブジェクトを
指定した場合に発生します。

//emlist[例][ruby]{
a = [1, 2, 3]
a.replace [4, 5, 6]
p a #=> [4, 5, 6]
//}...