hashStringCreate a hash value of a string |
This information is part of the Modelica Standard Library maintained by the Modelica Association.
hash = Strings.hashString(string);
Returns an Integer hash value of the provided string (the hash can be any Integer, including zero or a negative number).
hashString("this is a test") // = 1827717433 hashString("Controller.noise1") // = -1025762750
string |
Type: String Description: The string to create a hash from |
---|
hash |
Type: Integer Description: The hash value of string |
---|