I realized that the curly braces for a hash can be omitted if it is the last element in an array. For example, the forms:
[1, 2, 3, :a => 'A', :b => 'B']
[1, 2, 3, a: 'A', b: 'B']
seem to be identical to:
[1, 2, 3, {:a => 'A', :b => 'B'}]
[1, 2, 3, {a: 'A', b: 'B'}]
I knew this kind of omission is possible for arguments of a method, but had not noted it is possible for an array. Is my understanding of this rule correct? And, is this described somewhere?
[...]is a method call to a method that looks likedef x(*args)so the behavior makes some sense. Maybe dig up the array literal handling C code to see how it is handled internally. – mu is too short Feb 17 at 19:59{and}, and would state that in a code review. It's a maintenance and readability issue. – the Tin Man Feb 17 at 20:11[1,2,3,:a => 'b']is, in some sense, a method call to an array constructor method so of course it behaves like every other method call and auto-hashifies its arguments. – mu is too short Feb 17 at 20:23