diff options
| author | Tyge Løvset <[email protected]> | 2021-09-21 09:56:57 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2021-09-21 09:56:57 +0200 |
| commit | b31765540d40675665d8a58f5fa4d1e23dd5ba64 (patch) | |
| tree | a164d33d40a53a36605362c05ad0f84098a6befb /docs/csmap_api.md | |
| parent | ed62ea868e505d5773d583f4a09c32b13f00c180 (diff) | |
| download | STC-modified-b31765540d40675665d8a58f5fa4d1e23dd5ba64.tar.gz STC-modified-b31765540d40675665d8a58f5fa4d1e23dd5ba64.zip | |
Fixed input args documentation. Fixed carr2 and carr3 clone functions.
Diffstat (limited to 'docs/csmap_api.md')
| -rw-r--r-- | docs/csmap_api.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/csmap_api.md b/docs/csmap_api.md index 1e41593f..704a1685 100644 --- a/docs/csmap_api.md +++ b/docs/csmap_api.md @@ -76,12 +76,12 @@ csmap_X_rawvalue_t csmap_X_value_toraw(csmap_X_value_t* pval); | Type name | Type definition | Used to represent... | |:----------------------|:--------------------------------------------------|:-----------------------------| | `csmap_X` | `struct { ... }` | The csmap type | -| `csmap_X_rawkey_t` | `RawKey` | The raw key type | -| `csmap_X_rawmapped_t` | `RawMapped` | The raw mapped type | -| `csmap_X_rawvalue_t` | `struct { RawKey first; RawMapped second; }` | RawKey+RawMapped type | -| `csmap_X_key_t` | `Key` | The key type | -| `csmap_X_mapped_t` | `Mapped` | The mapped type | -| `csmap_X_value_t` | `struct { const Key first; Mapped second; }` | The value: key is immutable | +| `csmap_X_rawkey_t` | `i_keyraw` | The raw key type | +| `csmap_X_rawmapped_t` | `i_valraw` | The raw mapped type | +| `csmap_X_rawvalue_t` | `struct { i_keyraw first; i_valraw second; }` | RawKey+RawMapped type | +| `csmap_X_key_t` | `i_key` | The key type | +| `csmap_X_mapped_t` | `i_val` | The mapped type | +| `csmap_X_value_t` | `struct { const i_key first; i_val second; }` | The value: key is immutable | | `csmap_X_result_t` | `struct { csmap_X_value_t *ref; bool inserted; }` | Result of insert/put/emplace | | `csmap_X_iter_t` | `struct { csmap_X_value_t *ref; ... }` | Iterator type | |
