Project

General

Profile

Actions

Feature #5145

closed

Function extension of Array#transpose

Added by metanest (Makoto Kishimoto) over 12 years ago. Updated over 6 years ago.

Status:
Feedback
Assignee:
-
Target version:
-
[ruby-core:38701]

Description

Currently, Array#transpose doesn't transpose iliffe vector that
size of arrays in array are not same.

But iff the sequence of size is monotone nonincreasing, there is
natural transposition.

[[1, 2, 3], [4, 5], [6]].transpose
=> [[1, 4, 6], [2, 5], [3]]

Attachment is monkey patch implementation by Ruby .


Files

array-transpose.rb (821 Bytes) array-transpose.rb metanest (Makoto Kishimoto), 08/02/2011 05:28 PM

Updated by mame (Yusuke Endoh) about 12 years ago

  • Status changed from Open to Feedback

Interesting but do you have any use case?

--
Yusuke Endoh

Updated by yhara (Yutaka HARA) over 11 years ago

  • Target version changed from 2.0.0 to 2.6
Actions #3

Updated by naruse (Yui NARUSE) over 6 years ago

  • Target version deleted (2.6)
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0