Following java code returns hash code of a string.
String uri = \"Some URI\" public int hashCode() { return uri.hashCode(); }
I want t
Boost provides a hash function:
boost hash
#include int hashCode() { boost::hash string_hash; return string_hash("Hash me"); }