From: spinutids@... Date: 2016-05-02T03:25:38+00:00 Subject: [ruby-core:75299] [Ruby trunk Feature#12333] `String#concat`, `Array#concat`, `String#prepend` to take multiple arguments Issue #12333 has been updated by Satoru Horie. I will try to write a patch for it! ---------------------------------------- Feature #12333: `String#concat`, `Array#concat`, `String#prepend` to take multiple arguments https://bugs.ruby-lang.org/issues/12333#change-58426 * Author: Tsuyoshi Sawada * Status: Open * Priority: Normal * Assignee: ---------------------------------------- I would like `String#concat`, `Array#concat`, `String#prepend` to take multiple arguments ~~~ruby s = "" s.concat("a", "b", "c") a.prepend("A", "B", "C") s # => "ABCabc" a = [] a.concat(["a"], ["b", "c"]) a # => ["a", "b", "c"] ~~~ -- https://bugs.ruby-lang.org/ Unsubscribe: