'From Squeak3.10beta of 22 July 2007 [latest update: #7137] on 15 November 2007 at 10:42:18 pm'! "Change Set: WideCharacterSet-M3574-nice-newFrom Date: 15 November 2007 Author: nice A convenient #newFrom: instance creation method was missing. This cs add it"! !WideCharacterSet class methodsFor: 'instance creation' stamp: 'nice 11/15/2007 22:38'! newFrom: aCollection | newCollection | newCollection := self new. newCollection addAll: aCollection. ^newCollection! ! !WideCharacterSet class reorganize! ('instance creation' newFrom:) !