Home
Feedback Tracker
Search
Configure Global Search
Log In
Transactions
T157143
Change Details
Change Details
Old
New
Diff
``` myHashmap = createHashmap; myHashmap set ["test", []]; private _myArray = + (myHashmap get "test"); _myArray pushBack "test"; ``` ``` hint str myHashmap ``` IS ``` [["test", ["test"]]]; ``` it should be ``` [["test", []]] ``` only if I do this, it would be right: ``` private _myArray = (myHashmap get "test"); ```
``` myHashmap = createHashmap; myHashmap set ["test", []]; private _myArray = + (myHashmap get "test"); _myArray pushBack "test"; ``` ``` hint str myHashmap ``` returns ``` [["test", ["test"]]]; ``` it should be ``` [["test", []]] ``` only if I do this, it would be right: ``` private _myArray = (myHashmap get "test"); ```
``` myHashmap = createHashmap; myHashmap set ["test", []]; private _myArray = + (myHashmap get "test"); _myArray pushBack "test"; ``` ``` hint str myHashmap
``` IS
``` returns
``` [["test", ["test"]]]; ``` it should be ``` [["test", []]] ``` only if I do this, it would be right: ``` private _myArray = (myHashmap get "test"); ```
Continue