I meant a different thing though. I am looking for `mydic.update(another_dic)` analogue where `{"a": 1, "b": 2}` update `{"c": 3, "a": -1}` becomes `{"a":-1, "b": 2, "c": 3}`.
you need "merge"? https://forum.dlang.org/post/[email protected]
novice2 via Digitalmars-d-learn Thu, 10 Feb 2022 05:46:21 -0800
I meant a different thing though. I am looking for `mydic.update(another_dic)` analogue where `{"a": 1, "b": 2}` update `{"c": 3, "a": -1}` becomes `{"a":-1, "b": 2, "c": 3}`.
you need "merge"? https://forum.dlang.org/post/[email protected]