I've seen code before that do the following:
collection = [ var ].flatten # where var might or might not be an array
This idiom is better expressed using
Array(var)
there is noise in silence
I've seen code before that do the following:
collection = [ var ].flatten # where var might or might not be an array
This idiom is better expressed using
Array(var)