We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I find myself doing this a lot.
foo = Dict(i_return_a_dict()) foo.freeze()
I was thinking it would be nice to one-line that.
foo = Dict(i_return_a_dict(), freeze=True) # Or frozen?