From: "trans (Thomas Sawyer)" Date: 2012-07-24T00:59:23+09:00 Subject: [ruby-core:46676] [ruby-trunk - Feature #6499] Array::zip Issue #6499 has been updated by trans (Thomas Sawyer). If it is any consolation, I will add these to Facets. ---------------------------------------- Feature #6499: Array::zip https://bugs.ruby-lang.org/issues/6499#change-28342 Author: prijutme4ty (Ilya Vorontsov) Status: Rejected Priority: Normal Assignee: matz (Yukihiro Matsumoto) Category: core Target version: 2.0.0 Sometimes it's more natural to have Array::zip rather than Array#zip. Otherwise first array of list became unnecessary dedicated For example cols = first_row.zip(second_row,third_row,fourth_row) have more natural analog: cols = Array.zip(first_row,second_row,third_row,fourth_row) Implementation is obvious: def Array.zip(first,*rest) first.zip(*rest) end -- http://bugs.ruby-lang.org/