From: Phlip Date: 2009-03-08T09:08:21+09:00 Subject: Re: how to un-ragged a 2D array? Martin DeMello wrote: >> What if the array were even _more_ ragged?? >> >> [ 1 , >> [ 2, 3 ], >> 4 , >> [ 5, 6 ], >> 7 , >> 8 ] > > class Fixnum > def to_a > [self, self] > end > end > > :) That thing with the colon and paren, is it Ruby's operator to turn-this-monkey-patch-off-if-Fixnum-gets-reused-in-other-modules, mebbe? -- Phlip