Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Request for new functionality
View staffing
Description
We now encode a non-optimized Array or List with String keys representing indices in decimal numbers. For example:
listOf(listOf(0, 128, 255), listOf(255, 128, 0))
becomesBundle[{0=[0, 128, 255], 1=[255, 128, 0]}]
mapOf(123 to "foo", 456 to "bar")
becomesBundle[{0=123, 1=foo, 2=456, 3=bar}]
This is not very efficient and there could be a way to optimize it.