Hacker News new | ask | show | jobs
by avdi 5336 days ago
I'm not sure what you're getting at here, other than that trying to treat an array of arrays as an array of Hashes is a bad idea.
1 comments

I think the point is that Array(h) destroys the Hash, whereas [h].flatten will leave it intact, adding another unexpected gotcha to Array().

Array's terrible friend Integer() implicitly crashed my app in production before, so found that interesting to know; not necessarily related to your talk though. :)

[h].flatten on the other hand of course breaks horribly when someone decides that one of the values is meant to hold an array.