From: Todd Benson Date: 2008-07-20T00:11:44+09:00 Subject: Re: Array.drop doesn't work On Fri, Jul 18, 2008 at 8:16 PM, David Masover wrote: > On Wednesday 16 July 2008 08:00:13 Dave Bass wrote: > Untested implementation, then: > > class Array > def drop(n) > self.slice!(0,n) > end > end If the drop method alters the array, then you would have to modify your workaround to do what the docs say. class Array def drop(n) self.slice!(0, n) self end end Todd