diff options
| author | Tyge Løvset <[email protected]> | 2022-04-09 00:14:50 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-04-09 00:14:50 +0200 |
| commit | 1a4223837d4e34a085f00e323759ee5f9cd81bd3 (patch) | |
| tree | 9be8cb543c9043fa885e511b86595c91ea1f4fc5 /docs/cpque_api.md | |
| parent | 03065ed6ef93f88003cd6754ca4d50ba20a76ebd (diff) | |
| download | STC-modified-1a4223837d4e34a085f00e323759ee5f9cd81bd3.tar.gz STC-modified-1a4223837d4e34a085f00e323759ee5f9cd81bd3.zip | |
Universally added a put() function to all containers.
Diffstat (limited to 'docs/cpque_api.md')
| -rw-r--r-- | docs/cpque_api.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/cpque_api.md b/docs/cpque_api.md index 97ac70f5..055d2065 100644 --- a/docs/cpque_api.md +++ b/docs/cpque_api.md @@ -42,6 +42,7 @@ i_val* cpque_X_top(const cpque_X* self); void cpque_X_make_heap(cpque_X* self); // heapify the vector. void cpque_X_push(cpque_X* self, i_val value); +void cpque_X_put(cpque_X* self, i_val value); // alias for push() void cpque_X_emplace(cpque_X* self, i_valraw raw); // converts from raw void cpque_X_pop(cpque_X* self); |
