fn getOrPutAssumeCapacityAdapted(self: *Self, key: anytype, ctx: anytype) GetOrPutResult
[src]
If there is an existing item with key
, then the result Entry
pointers point to it, and found_existing is true. Otherwise, puts a new item with undefined key and value, and the Entry
pointers point to it. Caller must then initialize both the key and the value. If a new entry needs to be stored, this function asserts there is enough capacity to store it.