comparison lphobos/phobos.d @ 119:79c9ac745fbc trunk

[svn r123] Fixed some typeinfo module name mismatches. Fixed D-style varargs returning through pointer. Fixed converting nested function to delegate. Added std.string and std.format to Phobos.
author lindquist
date Mon, 26 Nov 2007 06:45:13 +0100
parents 288fe1029e1f
children a7dfa0ed966c
comparison
equal deleted inserted replaced
118:d580b95cce2b 119:79c9ac745fbc
1 module phobos; 1 module phobos;
2 2
3 import 3 import
4 std.array, 4 std.array,
5 std.ctype, 5 std.ctype,
6 std.format,
6 std.intrinsic, 7 std.intrinsic,
7 std.math, 8 std.math,
8 std.moduleinit, 9 std.moduleinit,
9 std.outofmemory, 10 std.outofmemory,
10 std.stdint, 11 std.stdint,
11 std.stdio, 12 std.stdio,
12 std.stdarg, 13 std.stdarg,
14 std.string,
13 std.uni, 15 std.uni,
14 std.utf, 16 std.utf,
15
16 //std.format,
17 //std.string,
18 17
19 std.c.fenv, 18 std.c.fenv,
20 std.c.locale, 19 std.c.locale,
21 std.c.math, 20 std.c.math,
22 std.c.process, 21 std.c.process,