Details
-
Enhancement
-
Status: New
-
P4
-
Resolution: Unresolved
-
9
-
None
-
generic
-
generic
Description
A DESCRIPTION OF THE REQUEST :
The String class should support a static method like this:
public static hashCode(int start, int end)
{
...
}
JUSTIFICATION :
Currently you have to build sub strings to do this, which is expensive. Or you have to copy/paste the hashCode implementation from String class and implement it yourself.
The String class should support a static method like this:
public static hashCode(int start, int end)
{
...
}
JUSTIFICATION :
Currently you have to build sub strings to do this, which is expensive. Or you have to copy/paste the hashCode implementation from String class and implement it yourself.