'From Squeak 3.2 of 11 July 2002 [latest update: #4917] on 13 August 2002 at 10:53:39 am'! "Change Set: HashChanges3 Date: 13 August 2002 Author: Andres Valloud Pass 3. Make String and ByteArray use the refactoring instead of the original implementation."! !String methodsFor: 'comparing' stamp: 'SqR 8/13/2002 10:52'! hash "#hash is implemented, because #= is implemented" ^ByteArray hashBytes: self startingWith: self species hash! ! !ByteArray methodsFor: 'comparing' stamp: 'SqR 8/13/2002 10:52'! hash "#hash is implemented, because #= is implemented" ^self class hashBytes: self startingWith: self species hash! !