diff options
| author | Tyge Løvset <[email protected]> | 2020-12-03 10:13:02 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2020-12-03 10:13:02 +0100 |
| commit | 2afda956b19186c6f4306d43429948a6f7f40d07 (patch) | |
| tree | 8ba57b84dfe6e480452698517d95c993991fe73c /docs/cset_api.md | |
| parent | 6ed9779a437d4ba439b1e1301d2e5f1e0eaefb7c (diff) | |
| download | STC-modified-2afda956b19186c6f4306d43429948a6f7f40d07.tar.gz STC-modified-2afda956b19186c6f4306d43429948a6f7f40d07.zip | |
Simplified type sections.
Diffstat (limited to 'docs/cset_api.md')
| -rw-r--r-- | docs/cset_api.md | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/docs/cset_api.md b/docs/cset_api.md index 970276e9..3a5d7fa7 100644 --- a/docs/cset_api.md +++ b/docs/cset_api.md @@ -26,23 +26,13 @@ be replaced by `my` in all of the following documentation. | Type name | Type definition | Used to represent... |
|:---------------------|:--------------------------------------|:-----------------------------------|
-| `cset_X` | `struct {` | The cset type |
-| | ` cset_X_value_t* table;` | |
-| | ` uint8_t* _hashx;` | |
-| | ` ...;` | |
-| | `}` | |
+| `cset_X` | `struct { ... }` | The cset type |
| `cset_X_rawkey_t` | `RawKey` | The raw key type |
| `cset_X_key_t` | `Key` | The key type |
| `cset_X_value_t` | `Key` | The value type |
-| `cset_X_result_t` | `struct {` | Result of insert/emplace |
-| | ` cset_X_value_t* first;` | |
-| | ` bool second; /* inserted */` | |
-| | `}` | |
+| `cset_X_result_t` | `struct { ... }` | Result of insert/emplace |
| `cset_X_input_t` | `cset_X_rawkey_t` | The input type (rawkey) |
-| `cset_X_iter_t` | `struct {` | Iterator type |
-| | ` cset_X_value_t* val;` | |
-| | ` ...;` | |
-| | `}` | |
+| `cset_X_iter_t` | `struct { ... }` | Iterator type |
## Constants and macros
|
