Array
extension Array
-
Declaration
Swift
public var circular: CircularArray<Element> { get }Return Value
CircularArraycontaining the elements contained herein. -
Declaration
Swift
public func appending(_ element: Element) -> ArrayReturn Value
Array with the
elementappended. -
Declaration
Swift
public static func + (lhs: Array, rhs: Element?) -> ArrayReturn Value
Left-hand-side value appending the right-hand-side value, if it exists. Otherwise, the left-hand-side value.
-
Declaration
Swift
public static func + (head: Element, tail: Array) -> ArrayReturn Value
New
Arraywith the first elementhead, and the remaining elements oftail.
View on GitHub
Install in Dash
Array Extension Reference