-
-
Notifications
You must be signed in to change notification settings - Fork 0
[feature] .items() for Maps #25
Copy link
Copy link
Open
Labels
analyzerThis issue is related to the analyzerThis issue is related to the analyzercompilerThis has to do with the bytecode compilerThis has to do with the bytecode compilerenhancementNew feature or requestNew feature or request
Metadata
Metadata
Assignees
Labels
analyzerThis issue is related to the analyzerThis issue is related to the analyzercompilerThis has to do with the bytecode compilerThis has to do with the bytecode compilerenhancementNew feature or requestNew feature or request
a method to get (key, value) pairs from a Map, e.g.:
input:
{1: 2, 2: 4, 3: 6}output:
[[1, 2], [2, 4], [3, 6]]this would be useful for iterating over maps, e.g. when correlating with another map:
some notes:
forloops yet? would also be very beneficial.