diff dwt/dwthelper/utils.d @ 283:98fd89730a00

Add Long min/max value
author Frank Benoit <benoit@tionex.de>
date Tue, 12 Aug 2008 02:47:14 +0200
parents 92e785261f30
children 35d730fb5e9f
line wrap: on
line diff
--- a/dwt/dwthelper/utils.d	Fri Aug 08 15:19:05 2008 +0200
+++ b/dwt/dwthelper/utils.d	Tue Aug 12 02:47:14 2008 +0200
@@ -313,6 +313,8 @@
 
 }
 class Long : ValueWrapperT!(long) {
+    public static const long MIN_VALUE = long.min;
+    public static const long MAX_VALUE = long.max;
     this( long value ){
         super(value);
     }