| 354 |
354 |
| 355 > It is perfectly possible to clone items into a map of a different type. |
355 > It is perfectly possible to clone items into a map of a different type. |
| 356 > For example, you can clone entries from a map that is just storing pointers (`CX_STORE_POINTERS`) to a map that |
356 > For example, you can clone entries from a map that is just storing pointers (`CX_STORE_POINTERS`) to a map that |
| 357 > allocates the memory for the objects (and vice versa). |
357 > allocates the memory for the objects (and vice versa). |
| 358 |
358 |
| |
359 > The maps passed to the above functions must all be different. |
| |
360 > Passing the same pointer for different map arguments may result in erroneous behavior. |
| |
361 >{style="warning"} |
| |
362 |
| 359 ## Dispose |
363 ## Dispose |
| 360 |
364 |
| 361 ```C |
365 ```C |
| 362 #include <cx/map.h> |
366 #include <cx/map.h> |
| 363 |
367 |