class Core::CStringFunctions
Overview
C-String helper functions. More…
#include <corestringtraits.h> class CStringFunctions { public: // methods static uint32 hashCFS (CStringPtr cString); static INLINE int hashCFSIndex (CStringPtr cString); static uint32 hashDJB (CStringPtr cString); };
Detailed Documentation
C-String helper functions.
Methods
static uint32 hashCFS (CStringPtr cString)
Hash function compatible to Apple CFString.
static INLINE int hashCFSIndex (CStringPtr cString)
Use CFString hash as positive integer index.
static uint32 hashDJB (CStringPtr cString)
Hash function by Daniel J.
Bernstein from comp.lang.c.