summaryrefslogtreecommitdiffhomepage
path: root/docs/cvec_api.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/cvec_api.md')
-rw-r--r--docs/cvec_api.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/cvec_api.md b/docs/cvec_api.md
index 3032c8e0..8bc3e67e 100644
--- a/docs/cvec_api.md
+++ b/docs/cvec_api.md
@@ -81,12 +81,12 @@ cvec_X_iter_t cvec_X_erase_range(cvec_X* self, cvec_X_iter_t first, cvec_X
cvec_X_iter_t cvec_X_erase_range_p(cvec_X* self, cvec_X_value_t* pfirst, cvec_X_value_t* pfinish);
cvec_X_iter_t cvec_X_find(const cvec_X* self, RawValue raw);
-cvec_X_iter_t cvec_X_find_in_range(const cvec_X* self,
- cvec_X_iter_t first, cvec_X_iter_t finish, RawValue raw);
-
+cvec_X_iter_t cvec_X_find_in_range(cvec_X_iter_t i1, cvec_X_iter_t i2, RawValue raw);
+bool cvec_X_bsearch(const cvec_X* self);
+bool cvec_X_bsearch_in_range(cvec_X_iter_t i1, cvec_X_iter_t i2, RawValue raw);
void cvec_X_sort(cvec_X* self);
-void cvec_X_sort_with(cvec_X* self, size_t ifirst, size_t ifinish,
- int(*cmp)(const cvec_X_value_t*, const cvec_X_value_t*));
+void cvec_X_sort_range(cvec_X_iter_t i1, cvec_X_iter_t i2,
+ int(*cmp)(const cvec_X_value_t*, const cvec_X_value_t*));
cvec_X_iter_t cvec_X_begin(const cvec_X* self);
cvec_X_iter_t cvec_X_end(const cvec_X* self);