summaryrefslogtreecommitdiffhomepage
path: root/docs/cqueue_api.md
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-01-04 18:25:44 +0100
committerTyge Løvset <[email protected]>2021-01-04 18:25:44 +0100
commita285bfb891ea00df8ab5cbb21f899ce9ced5f460 (patch)
tree28ea8c9fc44ae54a3655751b62d9c77212e1678c /docs/cqueue_api.md
parent8505d9caf2280c0b7486fef9e018befe9d9fcb96 (diff)
downloadSTC-modified-a285bfb891ea00df8ab5cbb21f899ce9ced5f460.tar.gz
STC-modified-a285bfb891ea00df8ab5cbb21f899ce9ced5f460.zip
Simplified: Removed CONTAINER_input_t type, replaced with CONTAINER_rawvalue_t
Diffstat (limited to 'docs/cqueue_api.md')
-rw-r--r--docs/cqueue_api.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md
index 721b2069..f5fe3f21 100644
--- a/docs/cqueue_api.md
+++ b/docs/cqueue_api.md
@@ -20,7 +20,6 @@ will affect the names of all cqueue types and methods. E.g. declaring `using_cqu
|:----------------------|:---------------------------------------|:-------------------------|
| `cqueue_X` | Depends on underlying container type | The cqueue type |
| `cqueue_X_value_t` | " | The cqueue element type |
-| `cqueue_X_input_t` | " | cqueue input type |
| `cqueue_X_rawvalue_t` | " | cqueue raw value type |
| `cqueue_X_iter_t` | " | cqueue iterator |
@@ -44,7 +43,7 @@ bool cqueue_X_empty(cqueue_X q);
cqueue_X_value_t* cqueue_X_front(cqueue_X* self);
cqueue_X_value_t* cqueue_X_back(cqueue_X* self);
-void cqueue_X_push_n(cqueue_X *self, const cqueue_X_input_t arr[], size_t size);
+void cqueue_X_push_n(cqueue_X *self, const cqueue_X_rawvalue_t arr[], size_t size);
void cqueue_X_emplace(cqueue_X* self, cqueue_X_rawvalue_t raw);
void cqueue_X_push(cqueue_X* self, cqueue_X_value_t value);
void cqueue_X_pop(cqueue_X* self);