[#18121] [Ruby 1.8.7 - Bug #405] (Open) ssl.rb:31: [BUG] Bus Error — Anonymous <redmine@...>

Issue #405 has been reported by Anonymous.

14 messages 2008/08/04

[#18130] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — Brian Candler <B.Candler@...>

> Seriously though... Array.first is a noun.

10 messages 2008/08/05

[#18319] NEW Command: absolute_path() -- — "C.E. Thornton" <admin@...>

Core,

14 messages 2008/08/16
[#18321] Re: NEW Command: absolute_path() -- — Yukihiro Matsumoto <matz@...> 2008/08/18

Hi,

[#18381] [Bug #496] DRb.start_service(nil) is very slow — Hongli Lai <redmine@...>

Bug #496: DRb.start_service(nil) is very slow

11 messages 2008/08/25

[ruby-core:18053] Re: New array methods cycle, choice, shuffle (plus bug in cycle)

From: "Wilson Bilkovich" <wilsonb@...>
Date: 2008-08-01 15:37:39 UTC
List: ruby-core #18053
On 8/1/08, David A. Black <dblack@rubypal.com> wrote:
> Hi --
>
>
>  On Fri, 1 Aug 2008, Charles Oliver Nutter wrote:
>
>
> > Michael Neumann wrote:
> >
> > > For me as a non-native English speaker, #choice is clearer.
> > > For me, #choose implies that *I* have to choose something, i.e. I would
> > > expect that method #choose has a parameter, which it doesn't have.
> > > Whereas #choice implies, that I have no choice, which is in some sense
> > > true for this method, because I can't choose the element I want.
> > >
> > > So in contrast to Charles, I think, ary.choice produces a choose
> > > operation internally :)
> > >
> >
> > I think it's pretty standard to have imperative verb methods be addressed
> to the object in question. IO#write is telling the IO object to write
> something. Enumerable#map is telling the Enumerable to produce a new array
> based on the results of eaching to your block. String#split tells the array
> to split based on your criteria. In almost all cases where a verb is
> specified, it's an order (or message, eh?) to the object in question. Choose
> is the same.
> >
>
>
>  If Python has "choice" to mean a random array element, then this is a
>  good opportunity for Ruby to be "a better Python" :-)
>

I would like to cast my vote (not that I get a vote, but you get the
idea) for Array#sample.
Unlike 'choice', it actually sounds useful to me.

In This Thread