Guest User

Collate debugging

a guest
Feb 17th, 2016
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. key := CollateKeyStream on: #(4018 3953 3968 1425 97) readStream unicodeNFD.
  2. value := CollateKeyStream on: #(4018 1425 3969 97) readStream unicodeNFD.
  3. key := CollateKeyStream on: #(4018 1425 3953 3968 97) readStream unicodeNFD.
  4.  
  5. key reset.
  6. Array streamContents: [ :str | [(str nextPut: key next) isNil] whileFalse ].
  7.  
  8. value reset.
  9. Array streamContents: [ :str | [(str nextPut: value next) isNil] whileFalse ].
  10.  
  11.  
  12.  
  13. UnicodeDUCETData default collateEntryFor: 4018.
  14. UnicodeDUCETData default collateEntryFor: 1425.
  15. UnicodeDUCETData default collateEntryFor: 3968.
  16. UnicodeDUCETData default collateEntryFor: 3953.
  17.  
  18. UnicodeCharacterData forCodePoint: 1425.
  19. UnicodeCharacterData forCodePoint: 3953.
  20. UnicodeCharacterData forCodePoint: 3968.
  21. UnicodeCharacterData forCodePoint: 97.
  22.  
  23. {#(1425 3969) readStream unicodeNFD upToEnd.
  24. #(1425 3953 3968) readStream unicodeNFD upToEnd.
Advertisement
Add Comment
Please, Sign In to add comment