|
@@ -37,7 +37,7 @@ extern class Builtin {
|
|
@:overload(function (f:Dict<Dynamic, Dynamic>):Int {})
|
|
@:overload(function (f:Dict<Dynamic, Dynamic>):Int {})
|
|
@:overload(function (f:Bytes):Int {})
|
|
@:overload(function (f:Bytes):Int {})
|
|
@:overload(function (f:DictView<Dynamic>):Int {})
|
|
@:overload(function (f:DictView<Dynamic>):Int {})
|
|
- @:overload(function (f:ByteArray):Int {})
|
|
|
|
|
|
+ @:overload(function (f:Bytearray):Int {})
|
|
@:overload(function (f:Tuple<Dynamic>):Int {})
|
|
@:overload(function (f:Tuple<Dynamic>):Int {})
|
|
public static function len(x:String):Int;
|
|
public static function len(x:String):Int;
|
|
|
|
|
|
@@ -80,10 +80,12 @@ extern class Builtin {
|
|
//public static function range():Void;
|
|
//public static function range():Void;
|
|
|
|
|
|
public static function type():Void;
|
|
public static function type():Void;
|
|
|
|
+ /*
|
|
@:overload(function (it:Array<Int>):python.lib.ByteArray {})
|
|
@:overload(function (it:Array<Int>):python.lib.ByteArray {})
|
|
@:overload(function (it:NativeIterable<Int>):python.lib.ByteArray {})
|
|
@:overload(function (it:NativeIterable<Int>):python.lib.ByteArray {})
|
|
@:overload(function (size:Int):python.lib.ByteArray {})
|
|
@:overload(function (size:Int):python.lib.ByteArray {})
|
|
public static function bytearray(source:String,encoding:String,?errors:Dynamic):python.lib.ByteArray;
|
|
public static function bytearray(source:String,encoding:String,?errors:Dynamic):python.lib.ByteArray;
|
|
|
|
+ */
|
|
public static function float(x:Dynamic):Float;
|
|
public static function float(x:Dynamic):Float;
|
|
|
|
|
|
@:overload(function <T>(f:Array<T>):Array<T> {})
|
|
@:overload(function <T>(f:Array<T>):Array<T> {})
|