Wrap Things In An Array, Even Hashes
I've always used Kernel::Array
to wrap things in an array. It works great.
Except with hashes, it might not do what you expect when given a hash.
I just wanted the hash wrapped in an array, not turned into an array of tuples.
The Array
class has a method #wrap
which behaves similarly to Kernal::Array
while also handling hashes in the way I was wanting.
Last updated