You don't even need the overload, T.Type = T.self gives you the best of both worlds. As for why it was designed that way, @itaiferber can tell you. Most likely it due to protocol requirements not being able to have default values, and perhaps such an implementation could meet the requirement back then. I also seem to remember some discussion around wanting to avoid confusion. You can implement the overloads yourself and they'll work fine.
And a subscript isn't really appropriate for an action like this, they're more for accessing values.
I'm not talking about adding overloads. I'm talking about adding default parameter values. To all of the overloads. That is a lot and I don't want to maintain it. Nobody wants to maintain it! That's why the documentation is the same for every overload.
Adding defaults is not an ABI compatible change, so at most we'd be able to add overloads, but I'm not sure what other impact that may have. I think something like this would be more possible as a larger refactoring of the Codable APIs.
Edit: I take that back, adding a default may be resilient, adding a new parameter with a default is not.