NumberParseResult.hx 470 B

1234567891011
  1. package flash.globalization;
  2. @:require(flash10_1) extern final class NumberParseResult {
  3. @:flash.property var endIndex(get,never) : Int;
  4. @:flash.property var startIndex(get,never) : Int;
  5. @:flash.property var value(get,never) : Float;
  6. function new(value : Float = 0./*NaN*/, startIndex : Int = 2147483647, endIndex : Int = 2147483647) : Void;
  7. private function get_endIndex() : Int;
  8. private function get_startIndex() : Int;
  9. private function get_value() : Float;
  10. }