Function StackMap
Convert SyncMap to Map
Convert a SyncMap
into a standard Map
.
Configuration
- Map: The
SyncMap
value to convert.
Output
The output will be a standard map with the same key and element type as the original SyncMap
.
For example:
SyncMap[String, Integer]
becomesMap[String, Integer]
*SyncMap[String, Integer]
becomes*Map[String, Integer]