You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see wrenGetMapCount for finding the number of items in a map, and wrenGetMapValue for getting a value into a slot using another slot, but I don't see any way to get a list of keys for a map so that I can actually usewrenGetMapValue. It seems like the C API only allows me to get map values that I already know ahead of time. Am I missing a function that would help with this task?
The text was updated successfully, but these errors were encountered:
It's not there just yet, that is a piece that is missing yep! it's common to solve it by passing the keys in with a small wrapper function as a list, then you iterate that in the C side. Not the best, but workable!
I see
wrenGetMapCount
for finding the number of items in a map, andwrenGetMapValue
for getting a value into a slot using another slot, but I don't see any way to get a list of keys for a map so that I can actually usewrenGetMapValue
. It seems like the C API only allows me to get map values that I already know ahead of time. Am I missing a function that would help with this task?The text was updated successfully, but these errors were encountered: