ライブラリ
クラス
- Array (12)
- DBM (12)
-
Encoding
:: Converter (60) - GDBM (12)
- Hash (64)
- IO (48)
- Method (12)
- Object (12)
- Pathname (36)
-
REXML
:: Child (12) -
REXML
:: Parent (12) -
Rake
:: FileList (48) - SDBM (12)
- Set (12)
- String (276)
- StringScanner (12)
- UnboundMethod (12)
-
YAML
:: DBM (12)
オブジェクト
- ENV (24)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - ARGF (12)
-
NEWS for Ruby 2
. 1 . 0 (12) -
NEWS for Ruby 2
. 5 . 0 (8) -
NEWS for Ruby 3
. 0 . 0 (5) - arity (24)
- clone (12)
- encode (36)
-
for
_ fd (12) - freeze (12)
- gsub (96)
- gsub! (60)
- merge (24)
- merge! (14)
- new (48)
- open (24)
-
pathmap
_ replace (12) -
replace
_ child (12) -
replace
_ with (12) - replacement (12)
- replacement= (12)
- resolv-replace (12)
-
ruby 1
. 6 feature (12) - string (12)
- sub (96)
- sub! (48)
-
sub
_ ext (12) - timeout (37)
- tr (12)
- tr! (12)
-
tr
_ s (12) -
tr
_ s! (12) - update (14)
検索結果
先頭5件
-
DBM
# replace(other) -> self (18113.0) -
self の内容を other の内容で置き換えます。
...6, DBM::NEWDB)
db2[:bb] = 'bbb'
db2[:cc] = 'ccc'
p db1.keys #=> ['b', 'a']
db1.replace(db2)
p db1.keys #=> ['bb', 'cc']
p db2.keys #=> ['bb', 'cc']
hash = {'x' => 'xxx', 'y' => 'yyy' }
p db1 #=> #<DBM:0xb7c7eb08>
p db1.replace(hash) #=> #<DBM:0xb7c7eb08>... -
GDBM
# replace(other) -> self (18113.0) -
self の内容を other の内容で置き換えます。
...1['a'] = 'aaa'
db1['b'] = 'bbb'
db2 = GDBM.open('bbb.gdbm', 0666, GDBM::NEWDB)
db2['c'] = 'ccc'
db2['d'] = 'ddd'
hash = { 'x' => 'xxx', 'y' => 'yyy'}
p db1 #=> #<GDBM:0xb7d1c8a8>
p db1.replace(db2) #=> #<GDBM:0xb7d1c8a8>
p db1.replace(hash) #=> #<GDBM:0xb7d1c8a8>... -
Hash
# replace(other) -> self (18113.0) -
ハッシュの内容を other の内容で置き換えます。
...y]{
foo = {1 => 'a', 2 => 'b'}
bar = {2 => 'B', 3 => 'C'}
foo.replace(bar)
p foo #=> {2=>"B", 3=>"C"}
zoo = {}
zoo = bar.dup
p zoo #=> {2=>"B", 3=>"C"}
class Foo
def to_hash
{:japan => 'kyoto'}
end
end
h = Hash.new
h.replace(Foo.new) #暗黙の変換
p h #=> {:japan=>"kyoto"}
//}
@see... -
SDBM
# replace(other) -> self (18113.0) -
self の内容を other の内容で置き換えます。
...p db1 #=> #<SDBM:0xb7c304d0>
p db1.to_hash #=> {"a"=>"aaa", "b"=>"bbb", "c"=>"ccc"}
p db1.replace(db2) #=> #<SDBM:0xb7c304d0>
p db1.to_hash #=> {"c"=>"ccc", "d"=>"ddd"}
p db1.replace(hash) #=> #<SDBM:0xb7c304d0>
p db1.to_hash #=> {"x"=>"xxx", "y"=>"yyy"}... -
Array
# replace(another) -> self (18107.0) -
配列の内容を配列 another の内容で置き換えます。
...よる暗黙の型変換を試みます。
@raise TypeError 引数に配列以外の(暗黙の型変換が行えない)オブジェクトを
指定した場合に発生します。
//emlist[例][ruby]{
a = [1, 2, 3]
a.replace [4, 5, 6]
p a #=> [4, 5, 6]
//}... -
Set
# replace(enum) -> self (18107.0) -
集合の要素をすべて削除し、enum で与えられた要素に置き換えます。
...納するオブジェクトを指定します。
@raise ArgumentError 引数 enum に each メソッドが定義されていない場合に
発生します。
//emlist[][ruby]{
require 'set'
p s = Set[10, 20, 30] # => #<Set: {10, 20, 30}>
s.replace([15, 25])
p s # => #<Set: {15, 25}>
//}......合要素を格納するオブジェクトを指定します。
@raise ArgumentError 引数 enum に each メソッドが定義されていない場合に
発生します。
//emlist[][ruby]{
p s = Set[10, 20, 30] # => #<Set: {10, 20, 30}>
s.replace([15, 25])
p s # => #<Set: {15, 25}>
//}... -
String
# replace(other) -> String (18107.0) -
self の内容を other の内容で置き換えます。
...self の内容を other の内容で置き換えます。
//emlist[例][ruby]{
str = "foo"
str.replace "bar"
p str # => "bar"
//}... -
ENV
. replace(hash) -> ENV (18101.0) -
環境変数を hash と同じ内容に変更します。 self を返します。
環境変数を hash と同じ内容に変更します。 self を返します。
@param hash キーと値の対応関係を指定します。 to_hash でハッシュに変換されます。 -
YAML
:: DBM # replace(other) -> YAML :: DBM (18101.0) -
self の内容を other の内容で置き換えます。
self の内容を other の内容で置き換えます。
@param other Hash、DBM オブジェクトを指定します。
@raise DBMError 更新に失敗した場合に発生します。
自身を返します。