Changeset 572
- Timestamp:
- 02/12/08 15:07:50 (10 months ago)
- Files:
-
- candidate/phobos/std/utf2.d (modified) (3 diffs)
- candidate/phobos/std/xml.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
candidate/phobos/std/utf2.d
r570 r572 926 926 * 927 927 * Note that, currently, foreach(c:dchars(s)) is superior to foreach(c;s) 928 * in that the latter still contains bugs.928 * in that the latter will fall over on encountering U-FFFF. 929 929 */ 930 930 Dchars!(T) dchars(T)(invariant(T)[] s) … … 971 971 * The input to this function MUST be valid UTF. 972 972 * 973 * The type of the output cannot be deduced. Therefore, it is necessary to explicitly974 * specify the output type.975 *976 973 * This function supercedes std.utf.toUTF8(), std.utf.toUTF16() and std.utf.toUTF32(). 977 974 * … … 1008 1005 1009 1006 // Helper functions 1010 p ublic//private1007 private debug 1011 1008 { 1012 1009 string makeReadable(string s) candidate/phobos/std/xml.d
r565 r572 11 11 Authors: Janice Caron 12 12 13 Date: 2006.02. 2613 Date: 2006.02.12 14 14 15 15 Examples:
