summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/carc_api.md2
-rw-r--r--docs/cbox_api.md2
-rw-r--r--docs/cdeq_api.md2
-rw-r--r--docs/clist_api.md2
-rw-r--r--docs/cvec_api.md4
5 files changed, 6 insertions, 6 deletions
diff --git a/docs/carc_api.md b/docs/carc_api.md
index fb79019a..3e394378 100644
--- a/docs/carc_api.md
+++ b/docs/carc_api.md
@@ -25,7 +25,7 @@ See similar c++ class [std::shared_ptr](https://en.cppreference.com/w/cpp/memory
#define i_cmp <f> // three-way compareison. REQUIRED IF i_key is a non-integral type
// Note that containers of carcs will "inherit" i_cmp
// when using carc in containers with i_valboxed MyArc - ie. the i_type.
-#define i_cmp_native // define instead of i_cmp only when i_key is an integral/native-type.
+#define i_use_cmp // define instead of i_cmp only when i_key is an integral/native-type.
#define i_keydrop <f> // destroy element func - defaults to empty destruct
#define i_keyclone <f> // REQUIRED if i_keydrop is defined, unless 'i_opt c_no_clone' is defined.
diff --git a/docs/cbox_api.md b/docs/cbox_api.md
index 0e6fca64..c683d9ef 100644
--- a/docs/cbox_api.md
+++ b/docs/cbox_api.md
@@ -19,7 +19,7 @@ See similar c++ class [std::unique_ptr](https://en.cppreference.com/w/cpp/memory
#define i_cmp <f> // three-way compareison. REQUIRED IF i_key is a non-integral type
// Note that containers of carcs will "inherit" i_cmp
// when using carc in containers with i_valboxed MyArc - ie. the i_type.
-#define i_cmp_native // define instead of i_cmp only when i_key is an integral/native-type.
+#define i_use_cmp // define instead of i_cmp only when i_key is an integral/native-type.
#define i_keydrop <f> // destroy element func - defaults to empty destruct
#define i_keyclone <f> // REQUIRED if i_keydrop is defined, unless 'i_opt c_no_clone' is defined.
diff --git a/docs/cdeq_api.md b/docs/cdeq_api.md
index c544f213..3ce58e78 100644
--- a/docs/cdeq_api.md
+++ b/docs/cdeq_api.md
@@ -13,7 +13,7 @@ See the c++ class [std::deque](https://en.cppreference.com/w/cpp/container/deque
#define i_key <t> // element type: REQUIRED. Note: i_val* may be specified instead of i_key*.
#define i_type <t> // cdeq container type name
#define i_cmp <f> // three-way compare of two i_keyraw*.
-#define i_cmp_native // define instead of i_cmp only when i_key is an integral/native-type.
+#define i_use_cmp // define instead of i_cmp only when i_key is an integral/native-type.
#define i_keydrop <f> // destroy value func - defaults to empty destruct
#define i_keyclone <f> // REQUIRED IF i_keydrop is defined
diff --git a/docs/clist_api.md b/docs/clist_api.md
index d8d614c2..a24d813b 100644
--- a/docs/clist_api.md
+++ b/docs/clist_api.md
@@ -25,7 +25,7 @@ See the c++ class [std::list](https://en.cppreference.com/w/cpp/container/list)
#define i_key <t> // element type: REQUIRED. Note: i_val* may be specified instead of i_key*.
#define i_type <t> // clist container type name
#define i_cmp <f> // three-way compare two i_keyraw*
-#define i_cmp_native // define instead of i_cmp only when i_key is an integral/native-type.
+#define i_use_cmp // define instead of i_cmp only when i_key is an integral/native-type.
#define i_keydrop <f> // destroy value func - defaults to empty destruct
#define i_keyclone <f> // REQUIRED IF i_keydrop defined
diff --git a/docs/cvec_api.md b/docs/cvec_api.md
index 3f827df6..8997ed51 100644
--- a/docs/cvec_api.md
+++ b/docs/cvec_api.md
@@ -15,7 +15,7 @@ See the c++ class [std::vector](https://en.cppreference.com/w/cpp/container/vect
#define i_type <t> // container type name
#define i_key <t> // element type: REQUIRED. Note: i_val* may be specified instead of i_key*.
#define i_cmp <f> // three-way compare two i_keyraw*
-#define i_cmp_native // define instead of i_cmp only when i_key is an integral/native-type.
+#define i_use_cmp // define instead of i_cmp only when i_key is an integral/native-type.
#define i_keydrop <f> // destroy value func - defaults to empty destruct
#define i_keyclone <f> // REQUIRED IF i_keydrop defined
@@ -224,4 +224,4 @@ int main(void) {
c_drop(UVec, &vec, &vec2); // cleanup
}
-``` \ No newline at end of file
+```