Actions
Feature #6641
openHash.auto constructor
Description
=begin
It is not uncommon to need a Hash following the pattern:
Hash.new{ |h,k| h[k]={} }
Another common example:
Hash.new{ |h,k| h[k]=[] }
This is common enough that it would very nice if we could have a more concise form, e.g.
Hash.auto{ {} }
Or for the second example:
Hash.auto{ [] }
Pure Ruby implementation is pretty simple:
def Hash.auto
Hash.new{ |h,k| h[k] = yield }
end
I think it would be nice to have in Core.
This is secondary, but it just occurred to me. Could there even be a literal notation for the above? Something like:
{}([])
?
=end
Actions
Like0
Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0