mirror of
https://github.com/jbranchaud/til
synced 2026-01-04 23:58:01 +00:00
Add Wrap Things In An Array, Even Hashes as a ruby til
This commit is contained in:
37
ruby/wrap-things-in-an-array-even-hashes.md
Normal file
37
ruby/wrap-things-in-an-array-even-hashes.md
Normal file
@@ -0,0 +1,37 @@
|
||||
# Wrap Things In An Array, Even Hashes
|
||||
|
||||
I've always used `Kernel::Array` to wrap things in an array. It works great.
|
||||
|
||||
```ruby
|
||||
> Array(nil)
|
||||
#=> []
|
||||
> Array(1)
|
||||
#=> [1]
|
||||
> Array(["hello", "world"])
|
||||
#=> ["hello", "world"]
|
||||
```
|
||||
|
||||
Except with hashes, it might not do what you expect when given a hash.
|
||||
|
||||
```ruby
|
||||
> Array({a: 1, b: 2})
|
||||
#=> [[:a, 1], [:b, 2]]
|
||||
```
|
||||
|
||||
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.
|
||||
|
||||
```ruby
|
||||
> Array.wrap(nil)
|
||||
#=> []
|
||||
> Array.wrap(1)
|
||||
#=> [1]
|
||||
> Array.wrap(["hello", "world"])
|
||||
#=> ["hello", "world"]
|
||||
> Array.wrap({a: 1, b: 2})
|
||||
#=> [{a: 1, b: 2}]
|
||||
```
|
||||
|
||||
[source](https://devdocs.io/rails~5.2/array#method-c-wrap)
|
||||
Reference in New Issue
Block a user