diff options
| author | Tyge Løvset <[email protected]> | 2021-11-03 11:51:10 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2021-11-03 11:51:10 +0100 |
| commit | 99979df6c500dbdea0ea7e202c7076db529d7e42 (patch) | |
| tree | 2e0468d5e099b72be8219ec763820125177a9d33 /docs/cmap_api.md | |
| parent | e259ed7807dd9474cc94ba625db4dcd573431362 (diff) | |
| download | STC-modified-99979df6c500dbdea0ea7e202c7076db529d7e42.tar.gz STC-modified-99979df6c500dbdea0ea7e202c7076db529d7e42.zip | |
Update container_X_getmut() for mutable version.
Diffstat (limited to 'docs/cmap_api.md')
| -rw-r--r-- | docs/cmap_api.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/cmap_api.md b/docs/cmap_api.md index 0e677880..809cb2e8 100644 --- a/docs/cmap_api.md +++ b/docs/cmap_api.md @@ -56,7 +56,7 @@ size_t cmap_X_bucket_count(cmap_X map); const cmap_X_mapped* cmap_X_at(const cmap_X* self, i_keyraw rkey); // rkey must be in map. const cmap_X_value* cmap_X_get(const cmap_X* self, i_keyraw rkey); // const get -cmap_X_value* cmap_X_mutget(cmap_X* self, i_keyraw rkey); // mutable get +cmap_X_value* cmap_X_getmut(cmap_X* self, i_keyraw rkey); // mutable get bool cmap_X_contains(const cmap_X* self, i_keyraw rkey); cmap_X_iter cmap_X_find(const cmap_X* self, i_keyraw rkey); // find element |
