I'd like to have my array items scrambled. Something like this:
[1,2,3,4].scramble => [2,1,3,4]
[1,2,3,4].scramble => [3,1,2,4]
[1,2,3,4].scramble => [4,2,3,1]
and so on, randomly
|
|
|
Built in now:
|
|||||||||
|
|
For ruby 1.8.6 (which does not have shuffle built in):
|
|||||||
|
|
For ruby 1.8.6 as sepp2k's example, but you still want use "shuffle" method.
cheers |
|||
|
|
Code from the Backports Gem for just the Array for Ruby 1.8.6. Ruby 1.8.7 or higher is built in.
|
|||
|
|
|
The Ruby Facets library of extensions has a Just be careful if you're using Rails as I experienced some nasty clashes in the way its monkeypatching clashed with Rails'... |
|||
|
|