+Googolplex soon? 😄

Best,
Christoph

Von: Taeumel, Marcel via Squeak-dev <squeak-dev@lists.squeakfoundation.org>
Gesendet: Montag, 4. Dezember 2023 09:50 Uhr
An: Davide Grandi via Squeak-dev <squeak-dev@lists.squeakfoundation.org>
Cc: Taeumel, Marcel <Marcel.Taeumel@hpi.de>
Betreff: [squeak-dev] Re: The Inbox: Morphic-ct.2145.mcz
 
+100 :-D

Best,
Marcel

Am 01.12.2023 21:01:37 schrieb commits@source.squeak.org <commits@source.squeak.org>:

Christoph Thiede uploaded a new version of Morphic to project The Inbox:
http://source.squeak.org/inbox/Morphic-ct.2145.mcz

==================== Summary ====================

Name: Morphic-ct.2145
Author: ct
Time: 1 December 2023, 9:00:59.264752 pm
UUID: 2cb1f9a9-0aad-eb44-bde5-90138c603659
Ancestors: Morphic-ct.2144

Proposal: Makes the code point and Unicode category of characters explorable in explorers, analogously to different representations of numbers.

=============== Diff against Morphic-ct.2144 ===============

Item was added:
+ ----- Method: Character>>explorerContents (in category '*Morphic-Explorer') -----
+ explorerContents
+
+ ^ {ObjectExplorerWrapper
+ with: self codePoint
+ name: 'code point'
+ model: self.
+ ObjectExplorerWrapper
+ with: (Unicode generalCategoryLabelOf: self codePoint)
+ name: 'category'
+ model: self}!

Item was added:
+ ----- Method: Character>>hasContentsInExplorer (in category '*Morphic-Explorer') -----
+ hasContentsInExplorer
+
+ ^ true!