diff options
| author | Tyge Lovset <[email protected]> | 2023-04-10 08:36:26 +0200 |
|---|---|---|
| committer | Tyge Lovset <[email protected]> | 2023-04-10 08:36:26 +0200 |
| commit | 54fe61ed1cbe8f68f7fb5bfafca4c5d135afd200 (patch) | |
| tree | bc614764fd78daaa095f6840ef15c483ec02c07e /docs/csmap_api.md | |
| parent | 680faa169dfc7e7d4fc7532922bf7103f8cdc279 (diff) | |
| download | STC-modified-54fe61ed1cbe8f68f7fb5bfafca4c5d135afd200.tar.gz STC-modified-54fe61ed1cbe8f68f7fb5bfafca4c5d135afd200.zip | |
Improved naming consistency: fixed rawkey - keyraw confusion (mostly internal).
Diffstat (limited to 'docs/csmap_api.md')
| -rw-r--r-- | docs/csmap_api.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/csmap_api.md b/docs/csmap_api.md index 4a5e911f..93faa4f9 100644 --- a/docs/csmap_api.md +++ b/docs/csmap_api.md @@ -91,12 +91,12 @@ csmap_X_raw csmap_X_value_toraw(csmap_X_value* pval); | Type name | Type definition | Used to represent... | |:--------------------|:--------------------------------------------------|:-----------------------------| | `csmap_X` | `struct { ... }` | The csmap type | -| `csmap_X_rawkey` | `i_keyraw` | The raw key type | -| `csmap_X_rawmapped` | `i_valraw` | The raw mapped type | -| `csmap_X_raw` | `struct { i_keyraw first; i_valraw second; }` | i_keyraw+i_valraw type | | `csmap_X_key` | `i_key` | The key type | | `csmap_X_mapped` | `i_val` | The mapped type | -| `csmap_X_value` | `struct { const i_key first; i_val second; }` | The value: key is immutable | +| `csmap_X_value` | `struct { i_key first; i_val second; }` | The value: key is immutable | +| `csmap_X_keyraw` | `i_keyraw` | The raw key type | +| `csmap_X_rmapped` | `i_valraw` | The raw mapped type | +| `csmap_X_raw` | `struct { i_keyraw first; i_valraw second; }` | i_keyraw+i_valraw type | | `csmap_X_result` | `struct { csmap_X_value *ref; bool inserted; }` | Result of insert/put/emplace | | `csmap_X_iter` | `struct { csmap_X_value *ref; ... }` | Iterator type | |
