*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Wed, 16 Sep 2009 12:56:05 +0200
changeset 2107 903ad42a8ea7
parent 2106 35b6c567ff7e
child 2108 7f166aebe418
*** empty log message ***
MethodFinder.st
--- a/MethodFinder.st	Tue Sep 08 18:56:17 2009 +0200
+++ b/MethodFinder.st	Wed Sep 16 12:56:05 2009 +0200
@@ -868,11 +868,14 @@
     "accessing" 
         asciiValue digitValue
     "comparing"
+    "queries"
+        bitsPerCharacter
     "testing" 
-        isAlphaNumeric isDigit isLetter isLowercase isSafeForHTTP isSeparator isSpecial isUppercase isVowel tokenish
+        isAlphaNumeric isDigit isLetter isLowercase isSafeForHTTP isSeparator isSpecial 
+        isUppercase isVowel tokenish isNationalAlphaNumeric isNationalDigit isNationalLetter
     "copying"
     "converting" 
-        asIRCLowercase asLowercase asUppercase
+        asIRCLowercase asLowercase asUppercase rot13 rot:
         ) do: [:sel | Approved add: sel].
 
 "String"
@@ -917,6 +920,8 @@
     "paragraph support" 
         indentationIfBlank:
     "arithmetic" 
+    "queries"
+        bitsPerCharacter
     "ST/X copying"
         paddedTo: paddedTo:with: centerPaddedTo: centerPaddedTo:with:
         decimalPaddedTo:and:at:
@@ -1585,5 +1590,5 @@
 !MethodFinder class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/MethodFinder.st,v 1.20 2009-02-08 18:32:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/MethodFinder.st,v 1.21 2009-09-16 10:56:05 cg Exp $'
 ! !