From 1790465d3dc002beafb91cc52d8aa6319dc67b35 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Wed, 3 Nov 2021 13:20:59 +0100 Subject: Removed carrN_elem(). Added assert in carrN_at(). --- docs/carray_api.md | 2 -- 1 file changed, 2 deletions(-) (limited to 'docs') diff --git a/docs/carray_api.md b/docs/carray_api.md index 65c4588f..aa9ea681 100644 --- a/docs/carray_api.md +++ b/docs/carray_api.md @@ -33,7 +33,6 @@ void carr2_X_del(carr2_X* self); size_t carr2_X_size(carr2_X arr); i_val* carr2_X_data(carr2_X* self); // access storage data -i_val* carr2_X_elem(carr2_X* self, size_t x, size_t y); const i_val* carr2_X_at(const carr2_X* self, size_t x, size_t y); carr2_X_iter carr2_X_begin(const carr2_X* self); @@ -52,7 +51,6 @@ void carr3_X_del(carr3_X* self); size_t carr3_X_size(carr3_X arr); i_val* carr3_X_data(carr3_X* self); // storage data -i_val* carr3_X_elem(carr3_X* self, size_t x, size_t y, size_t z); const i_val* carr3_X_at(const carr3_X* self, size_t x, size_t y, size_t z); carr3_X_iter carr3_X_begin(const carr3_X* self); -- cgit v1.2.3