comparison base/src/java/lang/Integer.d @ 51:c01d033c633a

[swt lin]
author Frank Benoit <benoit@tionex.de>
date Fri, 27 Mar 2009 19:58:06 +0100
parents 1bf55a6eb092
children fcf926c91ca4
comparison
equal deleted inserted replaced
50:d5075f5226e5 51:c01d033c633a
16 16
17 public static const int MIN_VALUE = 0x80000000; 17 public static const int MIN_VALUE = 0x80000000;
18 public static const int MAX_VALUE = 0x7fffffff; 18 public static const int MAX_VALUE = 0x7fffffff;
19 public static const int SIZE = 32; 19 public static const int SIZE = 32;
20 20
21 public this ( void* value ){
22 super( cast(int)value );
23 }
21 public this ( int value ){ 24 public this ( int value ){
22 super( value ); 25 super( value );
23 } 26 }
24 27
25 public this ( String s ){ 28 public this ( String s ){