Removes a value from the map in mapSlot, with the key from keySlot, and places it in removedValueSlot. If not found, removedValueSlot is set to null, the same behavior as the Wren Map API.

RemoveMapValue(
mapSlot
as Integer,
keySlot
as Integer,
removedValueSlot
as Integer)
Parameters
- mapSlot
- The slot containing the map.
- keySlot
- The slot containing the key.
- removedValueSlot
- Slot which will receive the removed value or NULL if key was not found.
Remarks
See Also
VM Class