Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changes between Version 11 and Version 12 of StdLib/IOLib

Show
Ignore:
Author:
JarrettBillingsley (IP: 150.212.2.210)
Timestamp:
11/12/07 20:32:23 (16 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • StdLib/IOLib

    v11 v12  
    8484 
    8585 '''`readByte()`, `readShort()`, `readInt()`, `readFloat()`, `readDouble()`, `readChar()`, `readWChar()`, `readDChar()`''':: 
    86  Reads one data primitive of the indicated type and returns it.  `readChar()` reads a single 8-bit UTF-8 code unit, not any more; it won't handle multi-byte encodings.  `readWChar()` also only reads one 16-bit UTF-16 code unit.   
     86 Reads one data primitive of the indicated type and returns it.  `readChar()` reads a single 8-bit UTF-8 code unit, not any more; it won't handle multi-byte encodings.  `readWChar()` also only reads one 16-bit UTF-16 code unit.  There are no multi-unit encodings in UTF-32, so `readDChar()` will always read a single valid character. 
    8787 
    8888 '''`readString()`'''::