diff -uNr dmd-0.108/dmd/html/d/arrays.html dmd-0.109/dmd/html/d/arrays.html --- dmd-0.108/dmd/html/d/arrays.html 2004-11-23 15:12:02.000000000 +0100 +++ dmd-0.109/dmd/html/d/arrays.html 2004-11-30 09:52:30.000000000 +0100 @@ -16,7 +16,7 @@ [Home] [Search] [D] -
Last update Nov 23, 2004 +
Last update Nov 30, 2004

Arrays

@@ -855,11 +855,11 @@ does not, it removes the key "hello" from the associative array.

- The InExpression yields a boolean result indicating if a key is in an associative - array or not: + The InExpression yields a pointer to the value + if the key is in the associatve array, or null if not:

-	if ("hello" in b)
+	if (("hello" in b) != null)
 		...
 	
diff -uNr dmd-0.108/dmd/html/d/changelog.html dmd-0.109/dmd/html/d/changelog.html --- dmd-0.108/dmd/html/d/changelog.html 2004-11-30 02:03:48.000000000 +0100 +++ dmd-0.109/dmd/html/d/changelog.html 2004-12-05 01:16:42.000000000 +0100 @@ -24,6 +24,7 @@
+

+ What's New for + D 0.109 +

+ +Dec 5, 2004 + +

New/Changed Features

+ + +

Bugs Fixed

+ + +

What's New for D 0.108 @@ -114,7 +141,7 @@