Extend Windows Process completion key's lifetime#15597
Extend Windows Process completion key's lifetime#15597straight-shoota merged 5 commits intocrystal-lang:masterfrom
Process completion key's lifetime#15597Conversation
|
Accesses to |
|
I suppose this might be fine for getting the bug fixed, but it seems far from ideal. We probably shouldn't need this for all |
|
That would be a use case for #15494 (so would the I was contemplating some kind of linked list but don't think O(n) deletion is worth it. |
|
Deletion in a doubly linked list would be O(1) if we have a pointer to the list node. It could be just the |
|
Indeed, it's something for |
Alternative to #14995. Fixes #15028.
There is probably a better data structure than
Sethere...