Changeset 283:98fd89730a00

Show
Ignore:
Timestamp:
08/11/08 20:47:14 (3 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Add Long min/max value

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dwthelper/utils.d

    r282 r283  
    314314} 
    315315class Long : ValueWrapperT!(long) { 
     316    public static const long MIN_VALUE = long.min; 
     317    public static const long MAX_VALUE = long.max; 
    316318    this( long value ){ 
    317319        super(value);