diff options
| author | Tyge Løvset <[email protected]> | 2022-10-24 12:23:30 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-10-24 12:23:30 +0200 |
| commit | cf2ff10878153588b69e7e34523773e2bc42d79e (patch) | |
| tree | 8980db94a0c79f5b02489510159821c0b8f22a39 /docs/cmap_api.md | |
| parent | 60611de13ad64442287c5a57c7aa874ad45273ab (diff) | |
| download | STC-modified-cf2ff10878153588b69e7e34523773e2bc42d79e.tar.gz STC-modified-cf2ff10878153588b69e7e34523773e2bc42d79e.zip | |
API CHANGE: Renamed input params for naming consisteny and usage:
i_key_class TYPE => i_keyclass TYPE
i_val_class TYPE => i_valclass TYPE
i_key_arcbox TYPE => i_keyboxed TYPE
i_val_arcbox TYPE => i_valboxed TYPE
i_key_bind, i_val_bind are removed.
Diffstat (limited to 'docs/cmap_api.md')
| -rw-r--r-- | docs/cmap_api.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/cmap_api.md b/docs/cmap_api.md index 119b72f2..bf56fcab 100644 --- a/docs/cmap_api.md +++ b/docs/cmap_api.md @@ -298,10 +298,10 @@ static inline void Viking_drop(Viking* vk) { } #define i_type Vikings -#define i_key_class Viking +#define i_keyclass Viking #define i_val int /* - i_key_class implies these defines, unless they are already defined: + i_keyclass implies these defines, unless they are already defined: #define i_cmp Viking_cmp #define i_hash Viking_hash #define i_keyclone Viking_clone @@ -377,7 +377,7 @@ static inline RViking Viking_toraw(const Viking* vp) { // With this in place, we define the Viking => int hash map type: #define i_type Vikings -#define i_key_class Viking +#define i_keyclass Viking #define i_keyraw RViking #define i_keyfrom Viking_from #define i_opt c_no_clone // disable map cloning @@ -385,7 +385,7 @@ static inline RViking Viking_toraw(const Viking* vp) { #define i_val int #include <stc/cmap.h> /* - i_key_class implies these defines, unless they are already defined: + i_keyclass implies these defines, unless they are already defined: #define i_cmp RViking_cmp //#define i_hash RViking_hash // already defined above. //#define i_keyclone Viking_clone // not used because c_no_clone |
