CharacterEncoderImplementations__ASCII.st
changeset 22340 08aa4efd5869
parent 8811 b2a78fe1d44f
child 22345 2463a8a7d2e1
equal deleted inserted replaced
22339:c3ec01dc8cd4 22340:08aa4efd5869
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
    14 
    13 
    15 "{ NameSpace: CharacterEncoderImplementations }"
    14 "{ NameSpace: CharacterEncoderImplementations }"
    16 
    15 
    17 SingleByteEncoder subclass:#ASCII
    16 SingleByteEncoder subclass:#ASCII
    38 !
    37 !
    39 
    38 
    40 documentation
    39 documentation
    41 "
    40 "
    42     Ascii - 7bit identity subset of Unicode.
    41     Ascii - 7bit identity subset of Unicode.
       
    42     Raises an error for characters above 0x7F.
    43 
    43 
    44     [author:]
    44     [author:]
    45         Claus Gittinger
    45         Claus Gittinger
    46 "
    46 "
    47 ! !
    47 ! !
   239 ! !
   239 ! !
   240 
   240 
   241 !ASCII class methodsFor:'documentation'!
   241 !ASCII class methodsFor:'documentation'!
   242 
   242 
   243 version
   243 version
   244     ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__ASCII.st,v 1.4 2005-03-31 18:12:07 cg Exp $'
   244     ^ '$Header$'
   245 ! !
   245 ! !
       
   246