i want prevent iteration of nil array.
How its should be done in ruby?
My bad solution:
if nil!=myArr
myArr.each { |item|
p item;
}
end
|
i want prevent iteration of nil array. How its should be done in ruby? My bad solution:
|
||||
|
|
|
In ruby, only
|
|||||
|
|
For a simple one-liner, you might also use
|
|||||
|
|
Simply checking for nil isn't always sufficient. Sometimes a variable you expect to be an array can be initialized as a non-array object when there is only one. It's not common, but proprietary services I've seen might give you a result of
|
|||
|
|
and then iterate. This will assign empty array to myArr only if it's nil. |
|||
|
|