/**
  * @see \Components\Object::hashCode() hashCode
  */
 public function hashCode()
 {
     return \math\hashs_fnv($this->m_value);
 }
/**
 * Calculates hash code for given string.
 *
 * @param string $string_
 *
 * @return integer
 */
function hash($string_)
{
    return \math\hashs_fnv($string_);
}