/* * Copyright (C)2005-2017 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. */ #if !macro import python.internal.ArrayImpl; import python.NativeIterator; #end @:native("list") @:coreApi extern class Array implements ArrayAccess { public var length(default,null) : Int; public function new() : Void; public inline function concat( a : Array) : Array { return ArrayImpl.concat(this, a); } public inline function copy() : Array { return ArrayImpl.copy(this); } @:runtime public inline function iterator() : Iterator { return ArrayImpl.iterator(this); } public inline function insert( pos : Int, x : T ) : Void { ArrayImpl.insert(this, pos, x); } @:runtime public inline function join( sep : String ) : String { return ArrayImpl.join(this, sep); } public inline function toString() : String { return ArrayImpl.toString(this); } @:runtime public inline function pop() : Null { return ArrayImpl.pop(this); } @:runtime public inline function push(x:T) : Int { return ArrayImpl.push(this,x); } public inline function unshift(x : T) : Void { ArrayImpl.unshift(this,x); } public inline function indexOf(x : T, ?fromIndex:Int) : Int { return ArrayImpl.indexOf(this,x, fromIndex); } public inline function lastIndexOf(x : T, ?fromIndex:Int) : Int { return ArrayImpl.lastIndexOf(this,x, fromIndex); } public inline function remove(x : T) : Bool { return ArrayImpl.remove(this,x); } public inline function reverse() : Void { ArrayImpl.reverse(this); } @:runtime public inline function shift() : Null { return ArrayImpl.shift(this); } public inline function slice( pos : Int, ?end : Int ) : Array { return ArrayImpl.slice(this, pos, end); } public inline function sort(f:T->T->Int) : Void { ArrayImpl.sort(this, f); } public inline function splice( pos : Int, len : Int ) : Array { return ArrayImpl.splice(this, pos, len); } @:runtime public inline function map( f : T -> S ) : Array { return ArrayImpl.map(this, f); } @:runtime public inline function filter( f : T -> Bool ) : Array { return ArrayImpl.filter(this,f); } @:keep private inline function _get(idx:Int):T { return ArrayImpl._get(this, idx); } @:keep private inline function _set(idx:Int, val:T):T { return ArrayImpl._set(this, idx,val); } @:keep private inline function unsafeGet(idx:Int):T { return ArrayImpl.unsafeGet(this, idx); } @:keep private inline function unsafeSet(idx:Int, val:T):T { return ArrayImpl.unsafeSet(this, idx,val); } @:noCompletion private function __iter__ ():NativeIterator; }