Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Unicode compose: baseChar with: compositionChar
Last updated at 4:00 pm UTC on 9 December 2015
compose: baseChar with: compositionChar
	"Answers the composition of baseChar and compositionChar if such a combination exists.
	Answers nil if the combination does not exist."
	^Character value: 
		((Compositions at: baseChar asInteger ifAbsent:[^nil])
			at: compositionChar asInteger ifAbsent:[^nil])