diff -uNr dmd-1.006/dmd/html/d/changelog.html dmd-1.007/dmd/html/d/changelog.html --- dmd-1.006/dmd/html/d/changelog.html 2007-02-15 02:04:20.000000000 +0100 +++ dmd-1.007/dmd/html/d/changelog.html 2007-02-20 20:20:24.000000000 +0100 @@ -32,7 +32,7 @@ -
Last update Thu Feb 15 02:04:18 2007 +
Last update Tue Feb 20 20:20:23 2007
@@ -196,6 +196,8 @@ -
Last update Sun Feb 4 20:07:59 2007 +
Last update Sun Feb 18 01:49:58 2007
@@ -314,21 +314,30 @@

And Expressions

AndExpression:
-	EqualExpression
-	AndExpression & EqualExpression
+	CmpExpression
+	AndExpression & CmpExpression
 
The operands are AND'd together. +

Compare Expressions

+ +
CmpExpression:
+	EqualExpression
+	IdentityExpression
+	RelExpression
+	InExpression
+
+

Equality Expressions

EqualExpression:
-	RelExpression
-	EqualExpression == RelExpression
-	EqualExpression != RelExpression
-	EqualExpression is RelExpression
-	EqualExpression !is RelExpression
+	ShiftExpression
+	ShiftExpression == ShiftExpression
+	ShiftExpression != ShiftExpression
+	ShiftExpression is ShiftExpression
+	ShiftExpression !is ShiftExpression
 
Equality expressions compare the two operands for equality (==) @@ -373,10 +382,11 @@ matching, and all the elements are equal. -

Identity Expressions

+

Identity Expressions

-
EqualExpression is RelExpression
-EqualExpression !is RelExpression
+
IdentityExpression:
+	ShiftExpression is ShiftExpression
+	ShiftExpression !is ShiftExpression
 
The is compares for identity. @@ -405,19 +415,18 @@
RelExpression:
 	ShiftExpression
-	InExpression
-	RelExpression < ShiftExpression
-	RelExpression <= ShiftExpression
-	RelExpression > ShiftExpression
-	RelExpression >= ShiftExpression
-	RelExpression !<>= ShiftExpression
-	RelExpression !<> ShiftExpression
-	RelExpression <> ShiftExpression
-	RelExpression <>= ShiftExpression
-	RelExpression !> ShiftExpression
-	RelExpression !>= ShiftExpression
-	RelExpression !< ShiftExpression
-	RelExpression !<= ShiftExpression
+	ShiftExpression < ShiftExpression
+	ShiftExpression <= ShiftExpression
+	ShiftExpression > ShiftExpression
+	ShiftExpression >= ShiftExpression
+	ShiftExpression !<>= ShiftExpression
+	ShiftExpression !<> ShiftExpression
+	ShiftExpression <> ShiftExpression
+	ShiftExpression <>= ShiftExpression
+	ShiftExpression !> ShiftExpression
+	ShiftExpression !>= ShiftExpression
+	ShiftExpression !< ShiftExpression
+	ShiftExpression !<= ShiftExpression
 
First, the integral promotions are done on the operands. @@ -552,10 +561,10 @@ -

In Expressions

+

In Expressions

-
InExpression:
-	RelExpression in ShiftExpression
+
InExpression:
+	ShiftExpression in ShiftExpression
 
An associative array can be tested to see if an element is in the array: diff -uNr dmd-1.006/dmd/html/d/function.html dmd-1.007/dmd/html/d/function.html --- dmd-1.006/dmd/html/d/function.html 2007-02-14 21:47:06.000000000 +0100 +++ dmd-1.007/dmd/html/d/function.html 2007-02-20 20:19:30.000000000 +0100 @@ -32,7 +32,7 @@ -
Last update Wed Feb 14 21:47:04 2007 +
Last update Tue Feb 20 20:19:28 2007
@@ -1175,7 +1175,7 @@
  • function parameters may not be variadic, - out, inout, or lazy
  • + or lazy
  • the function may not be nested or synchronized
  • @@ -1195,7 +1195,7 @@
  • the following statement types are not allowed: -
    • syncrhonized statements
    • +
      • synchronized statements
      • throw statements
      • with statements
      • scope statements
      • @@ -1203,6 +1203,11 @@
      • labelled break and continue statements
      + +
    • as a special case, the .dup property + can be executed at compile time +
    • +

      In order to be executed at compile time, the function @@ -1214,7 +1219,10 @@

    • argument for a template value parameter
    -
    template eval(A...) { alias A eval; }
    +
    template eval( A... )
    +{
    +    const typeof(A[0]) eval = A[0];
    +}
     
     int square(int i) { return i * i; }
     
    diff -uNr dmd-1.006/dmd/html/d/phobos/object.html dmd-1.007/dmd/html/d/phobos/object.html
    --- dmd-1.006/dmd/html/d/phobos/object.html	2007-02-15 02:02:42.000000000 +0100
    +++ dmd-1.007/dmd/html/d/phobos/object.html	2007-02-20 20:19:22.000000000 +0100
    @@ -28,7 +28,7 @@
     	
     	
     
    -	
    Last update Thu Feb 15 02:02:41 2007 +
    Last update Tue Feb 20 20:19:20 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/phobos.html dmd-1.007/dmd/html/d/phobos/phobos.html --- dmd-1.006/dmd/html/d/phobos/phobos.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/phobos.html 2007-02-20 20:19:24.000000000 +0100 @@ -29,7 +29,7 @@ -
    Last update Thu Feb 15 02:02:45 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_base64.html dmd-1.007/dmd/html/d/phobos/std_base64.html --- dmd-1.006/dmd/html/d/phobos/std_base64.html 2007-02-15 02:02:42.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_base64.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:41 2007 +
    Last update Tue Feb 20 20:19:20 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_bind.html dmd-1.007/dmd/html/d/phobos/std_bind.html --- dmd-1.006/dmd/html/d/phobos/std_bind.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_bind.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:42 2007 +
    Last update Tue Feb 20 20:19:21 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_bitarray.html dmd-1.007/dmd/html/d/phobos/std_bitarray.html --- dmd-1.006/dmd/html/d/phobos/std_bitarray.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_bitarray.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:42 2007 +
    Last update Tue Feb 20 20:19:21 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_boxer.html dmd-1.007/dmd/html/d/phobos/std_boxer.html --- dmd-1.006/dmd/html/d/phobos/std_boxer.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_boxer.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:42 2007 +
    Last update Tue Feb 20 20:19:21 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_c_fenv.html dmd-1.007/dmd/html/d/phobos/std_c_fenv.html --- dmd-1.006/dmd/html/d/phobos/std_c_fenv.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_c_fenv.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_c_math.html dmd-1.007/dmd/html/d/phobos/std_c_math.html --- dmd-1.006/dmd/html/d/phobos/std_c_math.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_c_math.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_compiler.html dmd-1.007/dmd/html/d/phobos/std_compiler.html --- dmd-1.006/dmd/html/d/phobos/std_compiler.html 2007-02-15 02:02:42.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_compiler.html 2007-02-20 20:19:22.000000000 +0100 @@ -32,7 +32,7 @@ -
    Last update Thu Feb 15 02:02:41 2007 +
    Last update Tue Feb 20 20:19:20 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_conv.html dmd-1.007/dmd/html/d/phobos/std_conv.html --- dmd-1.006/dmd/html/d/phobos/std_conv.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_conv.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:42 2007 +
    Last update Tue Feb 20 20:19:21 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_cover.html dmd-1.007/dmd/html/d/phobos/std_cover.html --- dmd-1.006/dmd/html/d/phobos/std_cover.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_cover.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:21 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_c_process.html dmd-1.007/dmd/html/d/phobos/std_c_process.html --- dmd-1.006/dmd/html/d/phobos/std_c_process.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_c_process.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_cpuid.html dmd-1.007/dmd/html/d/phobos/std_cpuid.html --- dmd-1.006/dmd/html/d/phobos/std_cpuid.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_cpuid.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:21 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_c_stdarg.html dmd-1.007/dmd/html/d/phobos/std_c_stdarg.html --- dmd-1.006/dmd/html/d/phobos/std_c_stdarg.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_c_stdarg.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_c_stddef.html dmd-1.007/dmd/html/d/phobos/std_c_stddef.html --- dmd-1.006/dmd/html/d/phobos/std_c_stddef.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_c_stddef.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_c_stdio.html dmd-1.007/dmd/html/d/phobos/std_c_stdio.html --- dmd-1.006/dmd/html/d/phobos/std_c_stdio.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_c_stdio.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_c_stdlib.html dmd-1.007/dmd/html/d/phobos/std_c_stdlib.html --- dmd-1.006/dmd/html/d/phobos/std_c_stdlib.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_c_stdlib.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:45 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_cstream.html dmd-1.007/dmd/html/d/phobos/std_cstream.html --- dmd-1.006/dmd/html/d/phobos/std_cstream.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_cstream.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:21 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_c_string.html dmd-1.007/dmd/html/d/phobos/std_c_string.html --- dmd-1.006/dmd/html/d/phobos/std_c_string.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_c_string.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:45 2007 +
    Last update Tue Feb 20 20:19:23 2007
    @@ -207,7 +207,7 @@


    -
    int strlen(char* s); +
    uint strlen(char* s);


    diff -uNr dmd-1.006/dmd/html/d/phobos/std_c_time.html dmd-1.007/dmd/html/d/phobos/std_c_time.html --- dmd-1.006/dmd/html/d/phobos/std_c_time.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_c_time.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:45 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_ctype.html dmd-1.007/dmd/html/d/phobos/std_ctype.html --- dmd-1.006/dmd/html/d/phobos/std_ctype.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_ctype.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:21 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_c_wcharh.html dmd-1.007/dmd/html/d/phobos/std_c_wcharh.html --- dmd-1.006/dmd/html/d/phobos/std_c_wcharh.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_c_wcharh.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:45 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_date.html dmd-1.007/dmd/html/d/phobos/std_date.html --- dmd-1.006/dmd/html/d/phobos/std_date.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_date.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:42 2007 +
    Last update Tue Feb 20 20:19:20 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_demangle.html dmd-1.007/dmd/html/d/phobos/std_demangle.html --- dmd-1.006/dmd/html/d/phobos/std_demangle.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_demangle.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:22 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_file.html dmd-1.007/dmd/html/d/phobos/std_file.html --- dmd-1.006/dmd/html/d/phobos/std_file.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_file.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:42 2007 +
    Last update Tue Feb 20 20:19:20 2007
    @@ -319,14 +319,14 @@

    -
    int isdir(); +
    uint isdir();
    Return !=0 if DirEntry is a directory.

    -
    int isfile(); +
    uint isfile();
    Return !=0 if DirEntry is a file. diff -uNr dmd-1.006/dmd/html/d/phobos/std_format.html dmd-1.007/dmd/html/d/phobos/std_format.html --- dmd-1.006/dmd/html/d/phobos/std_format.html 2007-02-15 02:02:42.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_format.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:41 2007 +
    Last update Tue Feb 20 20:19:20 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_gc.html dmd-1.007/dmd/html/d/phobos/std_gc.html --- dmd-1.006/dmd/html/d/phobos/std_gc.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_gc.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:22 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_intrinsic.html dmd-1.007/dmd/html/d/phobos/std_intrinsic.html --- dmd-1.006/dmd/html/d/phobos/std_intrinsic.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_intrinsic.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:22 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_math.html dmd-1.007/dmd/html/d/phobos/std_math.html --- dmd-1.006/dmd/html/d/phobos/std_math.html 2007-02-15 02:02:42.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_math.html 2007-02-20 20:19:20.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:40 2007 +
    Last update Tue Feb 20 20:19:19 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_md5.html dmd-1.007/dmd/html/d/phobos/std_md5.html --- dmd-1.006/dmd/html/d/phobos/std_md5.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_md5.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:42 2007 +
    Last update Tue Feb 20 20:19:20 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_metastrings.html dmd-1.007/dmd/html/d/phobos/std_metastrings.html --- dmd-1.006/dmd/html/d/phobos/std_metastrings.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_metastrings.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:22 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_mmfile.html dmd-1.007/dmd/html/d/phobos/std_mmfile.html --- dmd-1.006/dmd/html/d/phobos/std_mmfile.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_mmfile.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:22 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_openrj.html dmd-1.007/dmd/html/d/phobos/std_openrj.html --- dmd-1.006/dmd/html/d/phobos/std_openrj.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_openrj.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:22 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_outbuffer.html dmd-1.007/dmd/html/d/phobos/std_outbuffer.html --- dmd-1.006/dmd/html/d/phobos/std_outbuffer.html 2007-02-15 02:02:42.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_outbuffer.html 2007-02-20 20:19:20.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:40 2007 +
    Last update Tue Feb 20 20:19:19 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_outofmemory.html dmd-1.007/dmd/html/d/phobos/std_outofmemory.html --- dmd-1.006/dmd/html/d/phobos/std_outofmemory.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_outofmemory.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:22 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_path.html dmd-1.007/dmd/html/d/phobos/std_path.html --- dmd-1.006/dmd/html/d/phobos/std_path.html 2007-02-15 02:02:42.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_path.html 2007-02-20 20:19:20.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:40 2007 +
    Last update Tue Feb 20 20:19:18 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_process.html dmd-1.007/dmd/html/d/phobos/std_process.html --- dmd-1.006/dmd/html/d/phobos/std_process.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_process.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:22 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_random.html dmd-1.007/dmd/html/d/phobos/std_random.html --- dmd-1.006/dmd/html/d/phobos/std_random.html 2007-02-15 02:02:42.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_random.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:41 2007 +
    Last update Tue Feb 20 20:19:20 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_regexp.html dmd-1.007/dmd/html/d/phobos/std_regexp.html --- dmd-1.006/dmd/html/d/phobos/std_regexp.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_regexp.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:22 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_signals.html dmd-1.007/dmd/html/d/phobos/std_signals.html --- dmd-1.006/dmd/html/d/phobos/std_signals.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_signals.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:43 2007 +
    Last update Tue Feb 20 20:19:22 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_socket.html dmd-1.007/dmd/html/d/phobos/std_socket.html --- dmd-1.006/dmd/html/d/phobos/std_socket.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_socket.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:22 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_socketstream.html dmd-1.007/dmd/html/d/phobos/std_socketstream.html --- dmd-1.006/dmd/html/d/phobos/std_socketstream.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_socketstream.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_stdint.html dmd-1.007/dmd/html/d/phobos/std_stdint.html --- dmd-1.006/dmd/html/d/phobos/std_stdint.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_stdint.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_stdio.html dmd-1.007/dmd/html/d/phobos/std_stdio.html --- dmd-1.006/dmd/html/d/phobos/std_stdio.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_stdio.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_stream.html dmd-1.007/dmd/html/d/phobos/std_stream.html --- dmd-1.006/dmd/html/d/phobos/std_stream.html 2007-02-15 02:02:42.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_stream.html 2007-02-20 20:19:20.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:41 2007 +
    Last update Tue Feb 20 20:19:19 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_string.html dmd-1.007/dmd/html/d/phobos/std_string.html --- dmd-1.006/dmd/html/d/phobos/std_string.html 2007-02-15 02:02:42.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_string.html 2007-02-20 20:19:20.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:41 2007 +
    Last update Tue Feb 20 20:19:19 2007
    @@ -205,9 +205,9 @@

    -
    int iswhite(dchar c); +
    bool iswhite(dchar c);
    -
    Returns !=0 if c is whitespace +
    Returns true if c is whitespace

    @@ -525,7 +525,7 @@

    -
    int inPattern(dchar c, char[] pattern); +
    bool inPattern(dchar c, char[] pattern);
    See if character c is in the pattern.

    diff -uNr dmd-1.006/dmd/html/d/phobos/std_system.html dmd-1.007/dmd/html/d/phobos/std_system.html --- dmd-1.006/dmd/html/d/phobos/std_system.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_system.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_thread.html dmd-1.007/dmd/html/d/phobos/std_thread.html --- dmd-1.006/dmd/html/d/phobos/std_thread.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_thread.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    @@ -301,9 +301,9 @@

    -
    int isSelf(); +
    bool isSelf();
    -
    Returns non-zero if this thread is the current thread. +
    Returns true if this thread is the current thread.

    diff -uNr dmd-1.006/dmd/html/d/phobos/std_traits.html dmd-1.007/dmd/html/d/phobos/std_traits.html --- dmd-1.006/dmd/html/d/phobos/std_traits.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_traits.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_typetuple.html dmd-1.007/dmd/html/d/phobos/std_typetuple.html --- dmd-1.006/dmd/html/d/phobos/std_typetuple.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_typetuple.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_uni.html dmd-1.007/dmd/html/d/phobos/std_uni.html --- dmd-1.006/dmd/html/d/phobos/std_uni.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_uni.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_uri.html dmd-1.007/dmd/html/d/phobos/std_uri.html --- dmd-1.006/dmd/html/d/phobos/std_uri.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_uri.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_utf.html dmd-1.007/dmd/html/d/phobos/std_utf.html --- dmd-1.006/dmd/html/d/phobos/std_utf.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_utf.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_windows_charset.html dmd-1.007/dmd/html/d/phobos/std_windows_charset.html --- dmd-1.006/dmd/html/d/phobos/std_windows_charset.html 2007-02-15 02:02:46.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_windows_charset.html 2007-02-20 20:19:24.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:44 2007 +
    Last update Tue Feb 20 20:19:23 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_zip.html dmd-1.007/dmd/html/d/phobos/std_zip.html --- dmd-1.006/dmd/html/d/phobos/std_zip.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_zip.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:42 2007 +
    Last update Tue Feb 20 20:19:21 2007
    diff -uNr dmd-1.006/dmd/html/d/phobos/std_zlib.html dmd-1.007/dmd/html/d/phobos/std_zlib.html --- dmd-1.006/dmd/html/d/phobos/std_zlib.html 2007-02-15 02:02:44.000000000 +0100 +++ dmd-1.007/dmd/html/d/phobos/std_zlib.html 2007-02-20 20:19:22.000000000 +0100 @@ -28,7 +28,7 @@ -
    Last update Thu Feb 15 02:02:42 2007 +
    Last update Tue Feb 20 20:19:21 2007