File: Float.hx

package info (click to toggle)
haxe 1%3A4.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 40,556 kB
  • sloc: ml: 125,171; ansic: 2,408; makefile: 436; java: 362; cs: 323; cpp: 318; python: 316; sh: 75; objc: 64; php: 39; xml: 30; javascript: 11
file content (67 lines) | stat: -rw-r--r-- 3,266 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
 * Copyright (C)2005-2019 Haxe Foundation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

package java.lang;

@:native("") // make sure the generator won't see this
@:forwardStatics
@:forward abstract Float(FloatClass) from FloatClass to FloatClass {
	@:to extern inline public function toFloat():std.StdTypes.Float
		return this.floatValue();

	@:from extern inline public static function fromFloat(b:std.StdTypes.Single):Float
		return FloatClass.valueOf(b);
}

@:native("java.lang.Float") extern class FloatClass extends Number implements Comparable<Float> {
	@:overload function new(param1:Single):Void;
	@:overload @:throws("java.lang.NumberFormatException") function new(param1:String):Void;
	@:overload function new(param1:std.StdTypes.Float):Void;
	@:overload function compareTo(param1:Float):Int;
	@:overload function compareTo(param1:Dynamic):Int;
	@:overload function equals(param1:Dynamic):Bool;
	@:overload function hashCode():Int;
	@:overload function isInfinite():Bool;
	@:overload function isNaN():Bool;
	@:overload function toString():String;
	static final MAX_EXPONENT:Int;
	static final MAX_VALUE:Single;
	static final MIN_EXPONENT:Int;
	static final MIN_NORMAL:Single;
	static final MIN_VALUE:Single;
	static final NEGATIVE_INFINITY:Single;
	static final NaN:Single;
	static final POSITIVE_INFINITY:Single;
	static final SIZE:Int;
	static final TYPE:Class<std.StdTypes.Float>;
	@:overload static function compare(param1:Single, param2:Single):Int;
	@:overload static function floatToIntBits(param1:Single):Int;
	@:overload static function floatToRawIntBits(param1:Single):Int;
	@:overload static function intBitsToFloat(param1:Int):Single;
	@:native("isInfinite") @:overload static function _isInfinite(param1:Single):Bool;
	@:native("isNaN") @:overload static function _isNaN(param1:Single):Bool;
	@:overload @:throws("java.lang.NumberFormatException") static function parseFloat(param1:String):Single;
	@:overload static function toHexString(param1:Single):String;
	@:native("toString") @:overload static function _toString(param1:Single):String;
	@:overload static function valueOf(param1:Single):Float;
	@:overload @:throws("java.lang.NumberFormatException") static function valueOf(param1:String):Float;
}