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 @@
+
+
+Dec 5, 2004
+
+New/Changed Features
+
+ - super.id and this.id now work if id does not need a 'this'
+ pointer.
+
+
+Bugs Fixed
+
+ - Fixed constant folding problem with complex numbers.
+
- Fixed class member initialize bug.
+
- Fixed compiler gpf on bit sizeof.
+
- Now correctly diagnoses some forward reference errors.
+
- Fixed error recovery on minusing template as a variable.
+
- Fixed internal error e2ir 1158
+
- Fixed Assertion failure: '0' on line 661 in file 'expression.c'
+
- Fixed synchronized property call omitting ().
+
+
+
What's New for
D 0.108
@@ -114,7 +141,7 @@
- Improved speed of writef().
- Improved single thread performance of gc allocation
- per davejf's suggestions.
+ per Dave Fladebo's suggestions.
- InExpressions now, instead of returning a bit,
return a pointer to the associative array element if the key
is present, null if it is not. This obviates the need
diff -uNr dmd-0.108/dmd/html/d/faq.html dmd-0.109/dmd/html/d/faq.html
--- dmd-0.108/dmd/html/d/faq.html 2004-09-01 10:15:42.000000000 +0200
+++ dmd-0.109/dmd/html/d/faq.html 2004-12-04 13:08:22.000000000 +0100
@@ -18,7 +18,7 @@
[Search]
[D]
-
Last modified Jul 25, 2004.
+
Last modified Dec 4, 2004.
FAQ
@@ -34,6 +34,8 @@
- Is there linux port of D?
- Is there a GNU version of D?
- How do I write my own D compiler for CPU X?
+
- Where can I get a GUI for D?
+
- Where can I get an IDE for D?
- What about templates?
- Why emphasize implementation ease?
- Why did you leave [expletive deleted] printf in?
@@ -90,6 +92,20 @@
+Where can I get a GUI for D?
+
+ DUI is a graphical user
+ interface based on the
+ GTK+ graphical toolkit.
+
+
+
+Where can I get an IDE for D?
+
+ LEDS is a D language
+ editor for Linux.
+
+
What about templates?
D now supports advanced templates.
diff -uNr dmd-0.108/dmd/html/d/statement.html dmd-0.109/dmd/html/d/statement.html
--- dmd-0.108/dmd/html/d/statement.html 2004-10-28 19:34:10.000000000 +0200
+++ dmd-0.109/dmd/html/d/statement.html 2004-12-01 02:14:10.000000000 +0100
@@ -1,7 +1,7 @@