So I have some codes look like the following:
@foo ||= {}
@foo[:bar] ||= {}
@foo[:bar][:baz] ||= {}
I am not concerning the performance, but the cleanness. Is there a more beautiful way or better way to do so?
|
So I have some codes look like the following:
I am not concerning the performance, but the cleanness. Is there a more beautiful way or better way to do so?
| |||
|
feedback
|
| ||||
|
feedback
|
|
I think what you have is a good, terse way of writing the code, but below is another way I thought of to do the same thing. It'll still do the job, if you'd prefer to be more verbose:
or
| |||
feedback
|