docs/Writerside/topics/map.h.md

changeset 1429
6e0c3a8a914a
parent 1424
563033aa998c
--- a/docs/Writerside/topics/map.h.md	Fri Oct 17 15:04:56 2025 +0200
+++ b/docs/Writerside/topics/map.h.md	Fri Oct 17 16:53:24 2025 +0200
@@ -262,15 +262,9 @@
 CxMapIterator cxMapIteratorKeys(const CxMap *map);
 
 CxMapIterator cxMapIteratorValues(const CxMap *map);
-
-CxMapIterator cxMapMutIterator(CxMap *map);
-
-CxMapIterator cxMapMutIteratorKeys(CxMap *map);
-
-CxMapIterator cxMapMutIteratorValues(CxMap *map);
 ```
 
-The above functions create a ([mutating](iterator.h.md#mutating-iterators)) iterator over the
+The above functions create iterators over the
 pairs, keys, or values of the specified `map`, respectively.
 
 Iterators over pairs yield elements of type `CxMapEntry*` which is a struct containing a pointer to the `key` and the value, respectively.

mercurial