[svn] r6250: nemerle/trunk/NEWS
nazgul
svnadmin at nemerle.org
Mon May 8 19:28:10 CEST 2006
Log:
Some news about nullable
Author: nazgul
Date: Mon May 8 19:28:08 2006
New Revision: 6250
Modified:
nemerle/trunk/NEWS
Modified: nemerle/trunk/NEWS
==============================================================================
--- nemerle/trunk/NEWS (original)
+++ nemerle/trunk/NEWS Mon May 8 19:28:08 2006
@@ -1,6 +1,10 @@
0.9.3, May 9 2006
- * Support for Nullable type (MORE)
+ * Limited support for Nullable type:
+ * using nullable syntax (int?, MyStruct?),
+ * autoconversion of null and values to Nullable[T] (null : double?, 66 : int?)
+ * == and != operator with null literal (x == null, y != null)
+ (using operators on two nullable instances doesn't work yet)
* Extension methods (MORE)
* using (def x = ...) now works.
* Fixes in casts involving generic types.
@@ -14,7 +18,7 @@
* Types can be nested in variants now.
* Default stack size on MS.NET should not cause problems (with Out
of memoery exn) now.
- * (x, y) => expr can be used in place of fun (x, y) { expr }.
+ * '(x, y) => expr' can be used in place of fun (x, y) { expr }.
Library changes:
More information about the svn
mailing list