Skip to content

Commit

Permalink
tweaks to comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jvuletich committed Nov 30, 2024
1 parent 3bee097 commit d0e64fa
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
'From Cuis7.1 [latest update: #6876] on 30 November 2024 at 12:26:54 pm'!

!String commentStamp: '<historical>' prior: 0!
A String is an indexed collection of Characters. In Cuis, Characters are Unicode Code Points. In an instance of String, all the Characters must be in the first 255 CodePoints, the Latin-1 set. See also UnicodeString.

String support a vast array of useful methods, which can best be learned by browsing and trying out examples as you find them in the code.

Here are a few useful methods to look at...
String match:
String contractTo:

String also inherits many useful methods from its hierarchy, such as
SequenceableCollection ,
SequenceableCollection copyReplaceAll:with:

See UnicodeString.!


!UnicodeString commentStamp: '<historical>' prior: 0!
A UnicodeString is an indexed collection of Characters. In Cuis, Characters are Unicode Code Points. See also String.

Based on https://github.com/svenvc/UTF8String by Sven Van Caekenberghe. Good ideas and implementation. Thanks Sven!!

Play with the class side demo methods.!

0 comments on commit d0e64fa

Please sign in to comment.