New update! 3.1 is liiiive!
Error handling: Array now has sufficiently advanced error handling to remove most, if not all, disable_checks. Extention: With the metaprogramming techniques, new types can be added easily. Speed: With the new changes I've made to Judy, the Array module has far exceeded the speed of any traditional datatype
This commit is contained in:
20
dlls/arrayx/JudyExtra.h
Normal file
20
dlls/arrayx/JudyExtra.h
Normal file
@ -0,0 +1,20 @@
|
||||
#ifndef _JUDYARRAY_SHARED_INCLUDED
|
||||
#define _JUDYARRAY_SHARED_INCLUDED
|
||||
|
||||
#include "CBinTrie.h"
|
||||
#include "CBaseList.h"
|
||||
#include "CBaseMap.h"
|
||||
|
||||
extern bool JudyClearBinTrie(BinTrie* trie);
|
||||
extern bool JudySaveBinTrie(BinTrie* trie, char* file);
|
||||
extern bool JudyLoadBinTrie(BinTrie* trie, char* file);
|
||||
|
||||
extern bool JudyClearList(CBaseList* list);
|
||||
extern bool JudySaveList(CBaseList* list, char* file);
|
||||
extern bool JudyLoadList(CBaseList* list, char* file);
|
||||
|
||||
extern bool JudyClearMap(CBaseMap* map);
|
||||
extern bool JudySaveMap(CBaseMap* array, char* file);
|
||||
extern bool JudyLoadMap(CBaseMap* array, char* file);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user