ASArray
public struct ASArray
extension ASArray: ExpressibleByArrayLiteral
extension ASArray: CustomDebugStringConvertible
extension ASArray: Equatable
The ASArray structure represents an array value for ActionScript.
-
The length of an array.
Declaration
Swift
public var length: Int { get }
-
Creates a new instance containing the specified number of a single.
Declaration
Swift
public init(count: Int)
-
Creates a new instance of data.
Declaration
Swift
public init(data: [Any?])
-
Declaration
Swift
public init(arrayLiteral elements: Any?...)
-
Accesses the element at the specified position.
Declaration
Swift
public subscript(i: Any) -> Any? { get set }
-
Declaration
Swift
public var debugDescription: String { get }
-
Declaration
Swift
public static func == (lhs: ASArray, rhs: ASArray) -> Bool