Float values are "objects" of this class.
( ) : float
Simply returns value of the float.
( ) : int
Converts this float value to integer.
Returns string representation of the float.
() : string
Returns string escaped by html rules. Is an alias of the toString() method here.
() : string
Returns string escaped by url rules. Is an alias of the toString() method here.
Simply returns value of the float itself.
( ... ) : float
Static method - returns minimum value of its arguments. E.g. Float.min(1.0, 2.0, 3.0) will return 1.
( ... ) : float
Static method - returns maximum value of its arguments. E.g. Float.max(1.0, 2.0, 3.0) will return 3.0.
Returns true if this float value appears to be not a number.
Returns true if this float value is a finite number.
( from, to, ratio ) : float
Computes the average value using the formula: (to - from) * ratio + from;