comparison 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
comparison
equal deleted inserted replaced
282:92e785261f30 283:98fd89730a00
311 } 311 }
312 } 312 }
313 313
314 } 314 }
315 class Long : ValueWrapperT!(long) { 315 class Long : ValueWrapperT!(long) {
316 public static const long MIN_VALUE = long.min;
317 public static const long MAX_VALUE = long.max;
316 this( long value ){ 318 this( long value ){
317 super(value); 319 super(value);
318 } 320 }
319 this( String str ){ 321 this( String str ){
320 implMissing( __FILE__, __LINE__ ); 322 implMissing( __FILE__, __LINE__ );