|
collate::hashpublic member function
long hash (const charT* low, const charT* high) const; Get hash value Returns the hash value of the string corresponding to the character sequence [low,high).A hash for a string is a value that uniquely* identifies the content of the string, so that two strings with the same hash value, would compare equal by collate::compare, and two strings with different hash values would compare not equal. Thus, two strings can be easily compared for equality by simply comparing their hash values, which are of an integer type. During its operation, the version of this function in the generic template simply calls the virtual protected member do_transform, which is the member function in charge of performing the actions described above. * The uniqueness is relative to the possible values the hash type can take (in this case numeric_limits<unsigned long>::max()). Therefore, there is a very small probability that two strings with different contents have the same hash (generally, one in billions). Parameters
Return valueAn integer value that identifies the content of the entire character sequence.Example
Possible output:
See also
|