src/cx/map.h

changeset 853
d4baf4dd55c3
parent 759
475335643af4
child 854
fe0d69d72bcd
     1.1 --- a/src/cx/map.h	Thu May 23 18:21:36 2024 +0200
     1.2 +++ b/src/cx/map.h	Thu May 23 19:29:14 2024 +0200
     1.3 @@ -268,7 +268,7 @@
     1.4   * @return an iterator for the currently stored values
     1.5   */
     1.6  __attribute__((__nonnull__, __warn_unused_result__))
     1.7 -CxMutIterator cxMapMutIteratorValues(CxMap *map);
     1.8 +CxIterator cxMapMutIteratorValues(CxMap *map);
     1.9  
    1.10  /**
    1.11   * Creates a mutating iterator over the keys of a map.
    1.12 @@ -282,7 +282,7 @@
    1.13   * @return an iterator for the currently stored keys
    1.14   */
    1.15  __attribute__((__nonnull__, __warn_unused_result__))
    1.16 -CxMutIterator cxMapMutIteratorKeys(CxMap *map);
    1.17 +CxIterator cxMapMutIteratorKeys(CxMap *map);
    1.18  
    1.19  /**
    1.20   * Creates a mutating iterator for a map.
    1.21 @@ -298,7 +298,7 @@
    1.22   * @see cxMapMutIteratorValues()
    1.23   */
    1.24  __attribute__((__nonnull__, __warn_unused_result__))
    1.25 -CxMutIterator cxMapMutIterator(CxMap *map);
    1.26 +CxIterator cxMapMutIterator(CxMap *map);
    1.27  
    1.28  #ifdef __cplusplus
    1.29  } // end the extern "C" block here, because we want to start overloading

mercurial