![]()
|
|
Arrays are one of the most commonly used data structures . Ruby provides powerful and versatile arrays for all your needs. |
|
Mastering them means you can get a lot done out of them. |
|
Creating Arrays |
|
There are many ways to create arrays. |
|
Create an empty array: |
|
An array of items of same type: |
|
An array of arrays: |
|
A nested array: |
|
An array of items of different types: |
|
Creating with the |
|
Using a block to dynamically create items: |
|
If you don’t like quoting strings, use |
|
Accessing Array items |
|
The operator method |
|
Array index starts from 0: |
|
To count backwards (from last to first), use negative indices: |
|
Extract a portion of an array: |
|
Same thing with a range: |
|
There are other ways to access items too: |
|
Accessing beyond range returns |
|
In some situations, this behavior can result in
unexpected bugs. If you want to know if the index is
out of range, use |
|
This will blow up with an exception if the index is out of range: |
|
You can provide a default value with fetch if there’s nothing in that index: |
|
Accessing Array Items By Digging |
|
If you have a nested array, and you want to access a
specific item, you can use |
|
But a better, safer way is to use |
|
Assume |
|
But what if the user only supplied 2 items for |
|
It’ll blow up with a |
|
But with |
|
And you get the correct value if the item exists: |
|
This means you can use this in conditionals like so: |
|
Without |
|
Modifying Array Items |
|
|
|
Adding Items |
|
|
|
|
|
|
|
|
|
Note: All these methods modify the original array, and also return the modified array as the return value. |
|
Removing Items |
|
|
|
|
|
|
|
Replacing Items |
|
Use the |
|
You can replace consecutive items if you pass two
indices, or a range to |
|
Common Array Methods |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Bang Methods |
|
All the methods above don’t modify the array they were called on. They just return a new modified array. |
|
To modify the original array, use the “bang”
versions of these methods: |
|
In general, prefer non-bang methods because they’re easier to debug as they don’t modify the original array. |
|
Array Set Operations |
|
|
|
|
|
|
|
|
|
Note: |
|
Useful Enumerable Array Methods |
|
The Array class includes the |
|
In fact, the |
|
There’s a lot more. Read the docs for full list. But I’ll list some of my favorite and most useful methods: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
In |
|
AliasesMany methods we discussed above have other names as well. These are method aliases. |
|
|
|
Which one to use? |
|
Simplify with Block Argument
|
|
From Ruby 3.4, instead of this: |
|
You can do this: |
|
But be careful. If there’s already an |
|
So only use this feature: |
|
|
|
Official Docs
|
|
Useful Links
|