changeset 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 2a558b06fef7
files dwt/dwthelper/utils.d
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
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);
     }