prepend(other_str) -> String
[permalink][rdoc]文字列 other_str を先頭に破壊的に追加します。
例:
a = "world" a.prepend("hello ") # => "hello world" a # => "hello world"
prepend(*arguments) -> String
[permalink][rdoc]複数の文字列を先頭に破壊的に追加します。
a = "!!!"
a.prepend # => "!!!"
a # => "!!!"
a = "!!!"
a.prepend "hello ", "world" # => "hello world!!!"
a # => "hello world!!!"