comparison base/src/java/lang/Float.d @ 107:e944a4cf537b

Updated to dmd 1.063 and Tango trunk.
author Jacob Carlborg <doob@me.com>
date Sun, 22 Aug 2010 18:53:29 +0200
parents 9e0ab372d5d8
children 536e43f63c81
comparison
equal deleted inserted replaced
106:bacf7be144c4 107:e944a4cf537b
9 9
10 public static float POSITIVE_INFINITY = (1.0f / 0.0f); 10 public static float POSITIVE_INFINITY = (1.0f / 0.0f);
11 public static float NEGATIVE_INFINITY = ((-1.0f) / 0.0f); 11 public static float NEGATIVE_INFINITY = ((-1.0f) / 0.0f);
12 public static float NaN = (0.0f / 0.0f); 12 public static float NaN = (0.0f / 0.0f);
13 public static float MAX_VALUE = 3.4028235e+38f; 13 public static float MAX_VALUE = 3.4028235e+38f;
14 public static float MIN_VALUE = 1.4e-45f; 14 public static float MIN_VALUE = float.min; //1.4e-45f
15 public static int SIZE = 32; 15 public static int SIZE = 32;
16 private float value; 16 private float value;
17 17
18 this( float value ){ 18 this( float value ){
19 super(); 19 super();