&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; Hi list,<br>&gt;<br>&gt; I just stumbled upon this:<br>&gt;<br>&gt; Object new hash 3698<br>&gt; OrderedCollection new hash 183475190<br>&gt;<br>&gt; Hashes for collections seems to be much bigger than other hashes. Is
<br>&gt; there a reason for that?<br>&gt;<br>&gt; Cheers,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; Romain<br>&gt;<br><br>In my application this causes major problems.<br>In the case of class Character I created two arrays on the<br>class side of Character.&nbsp; The first array stored
<br>30 bit hash values, one or for each character.<br>The second array stores the the Xor&nbsp; of the first<br>k character hash values in position k.&nbsp; This&nbsp; allows<br>me to compute a hash value for a range of characters<br>quickly.&nbsp; 
<br>Using these arrays to determine hash values for characters<br>solved my hash value problems, as least for <br>Character class objects.<br><br>Ralph<br>