summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authortylov <[email protected]>2023-07-18 01:36:51 +0200
committertylov <[email protected]>2023-07-18 01:36:51 +0200
commit313c1d7bb9b92e75801429c1f7f132589860292e (patch)
treeb68451b728c7e06275388348e8ccb90d5a1c5a7f /README.md
parent23eeedb3fc298602732f394adba6a43c876ca7d8 (diff)
downloadSTC-modified-313c1d7bb9b92e75801429c1f7f132589860292e.tar.gz
STC-modified-313c1d7bb9b92e75801429c1f7f132589860292e.zip
Renamed i_native_cmp => i_cmp_native
Added c_all_of(), c_any_of(), c_none_of() to algo/filter.h
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index b7e06790..6bbe50ee 100644
--- a/README.md
+++ b/README.md
@@ -252,7 +252,7 @@ struct Point { float x, y; };
#include <stc/cvec.h> // cvec_pnt: vector of struct Point
#define i_key int
-#define i_native_cmp // enable sort/search. Use native `<` and `==` operators
+#define i_cmp_native // enable sort/search. Use native `<` and `==` operators
#include <stc/clist.h> // clist_int: singly linked list
#define i_key int
@@ -619,7 +619,7 @@ STC is generally very memory efficient. Memory usage for the different container
- cspan: Support for column-major (fortran order) multidim spans and transposed views.
- Removed default comparison for clist, cvec and cdeq (as with cstack and cqueue).
- Using i_key_str, i_keyclass, i_keyboxed still expects comparisons defined.
- - Define i_native_cmp to enable built-in i_key types comparisons (<, ==).
+ - Define i_cmp_native to enable built-in i_key types comparisons (<, ==).
- cstr and csview are now shared linked by default. Static linking by defining i_static.
- New cdeq and cqueue implementation(s), using circular buffer.
- Renamed i_extern => i_import.