diff runtime/internal/adi.d @ 717:a26b0c5d5942

Merged DMD 1.036. Improved comments a little in the runtime source code.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Wed, 22 Oct 2008 17:06:17 +0200
parents 30b42a283c8e
children e78e1d559a76
line wrap: on
line diff
--- a/runtime/internal/adi.d	Wed Oct 22 15:35:46 2008 +0200
+++ b/runtime/internal/adi.d	Wed Oct 22 17:06:17 2008 +0200
@@ -240,6 +240,8 @@
 
 /**********************************************
  * Support for array.reverse property.
+ * The actual type is painted on the return value by the frontend
+ * Given and returned length are number of elements
  */
 
 extern (C) void[] _adReverse(void[] a, size_t szelem)
@@ -370,6 +372,8 @@
 
 /***************************************
  * Support for array equality test.
+ * The actual type is painted on the return value by the frontend
+ * Given lengths are number of elements
  */
 
 extern (C) int _adEq(void[] a1, void[] a2, TypeInfo ti)
@@ -400,6 +404,8 @@
 
 /***************************************
  * Support for array compare test.
+ * The actual type is painted on the return value by the frontend
+ * Given lengths are number of elements
  */
 
 extern (C) int _adCmp(void[] a1, void[] a2, TypeInfo ti)
@@ -437,6 +443,8 @@
 
 /***************************************
  * Support for array compare test.
+ * The actual type is painted on the return value by the frontend
+ * Given lengths are number of elements
  */
 
 extern (C) int _adCmpChar(void[] a1, void[] a2)