From 17e620fe3b3c42134a1139245c6590816c1ca6bf Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Sat, 9 Apr 2022 20:58:11 +0200 Subject: - Switched from .._put() to .._push() as the "generic" method to add element to any container. - Changed clist_X_insert()/emplace() to clist_X_insert_at()/emplace_at() to make it consistent with cvec/cdeq. - Updated documentation. --- docs/cqueue_api.md | 1 - 1 file changed, 1 deletion(-) (limited to 'docs/cqueue_api.md') diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md index 75105928..0ecae014 100644 --- a/docs/cqueue_api.md +++ b/docs/cqueue_api.md @@ -35,7 +35,6 @@ cqueue_X_value* cqueue_X_front(const cqueue_X* self); cqueue_X_value* cqueue_X_back(const cqueue_X* self); cqueue_X_value* cqueue_X_push(cqueue_X* self, i_val value); -cqueue_X_value* cqueue_X_put(cqueue_X* self, i_val value); // alias for push() cqueue_X_value* cqueue_X_emplace(cqueue_X* self, i_valraw raw); void cqueue_X_pop(cqueue_X* self); -- cgit v1.2.3