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/cmap_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/cmap_api.md')
| -rw-r--r-- | docs/cmap_api.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/cmap_api.md b/docs/cmap_api.md index 0dd19d2c..4b73345c 100644 --- a/docs/cmap_api.md +++ b/docs/cmap_api.md @@ -99,12 +99,12 @@ void c_default_del(Type* val); // doe | Type name | Type definition | Used to represent... | |:---------------------|:------------------------------------------------|:------------------------------| | `cmap_X` | `struct { ... }` | The cmap type | -| `cmap_X_rawkey_t` | `RawKey` | The raw key type | -| `cmap_X_rawmapped_t` | `RawMapped` | The raw mapped type | -| `cmap_X_rawvalue_t` | `struct { RawKey first; RawMapped second; }` | RawKey + RawMapped type | -| `cmap_X_key_t` | `Key` | The key type | -| `cmap_X_mapped_t` | `Mapped` | The mapped type | -| `cmap_X_value_t` | `struct { const Key first; Mapped second; }` | The value: key is immutable | +| `cmap_X_rawkey_t` | `i_keyraw` | The raw key type | +| `cmap_X_rawmapped_t` | `i_valraw` | The raw mapped type | +| `cmap_X_rawvalue_t` | `struct { i_keyraw first; i_valraw second; }` | RawKey + RawMapped type | +| `cmap_X_key_t` | `i_key` | The key type | +| `cmap_X_mapped_t` | `i_valraw` | The mapped type | +| `cmap_X_value_t` | `struct { const i_key first; i_val second; }` | The value: key is immutable | | `cmap_X_result_t` | `struct { cmap_X_value_t *ref; bool inserted; }`| Result of insert/put/emplace | | `cmap_X_iter_t` | `struct { cmap_X_value_t *ref; ... }` | Iterator type | |
