No overview available.
SDK
- Xcode 10.0+
Framework
- Swift Standard Library
Declaration
subscript(x: (Unbounded Range_) -> ()) -> Array Slice<Element> { get set }
No overview available.
SDK
Framework
subscript(x: (Unbounded Range_) -> ()) -> Array Slice<Element> { get set }
subscript(Int) -> ElementAccesses the element at the specified position.
var first: Element?The first element of the collection.
var last: Element?The last element of the collection.
subscript(Range<Int>) -> Array Slice<Element>Accesses a contiguous subrange of the array’s elements.
subscript(Range<Int>) -> Slice<Array<Element>>Accesses a contiguous subrange of the collection’s elements.
subscript<R>(R) -> Array Slice<Element>Accesses the contiguous subrange of the collection’s elements specified by a range expression.
func random Element() -> Element?Returns a random element of the collection.
func random Element<T>(using: inout T) -> Element?Returns a random element of the collection, using the given generator as a source for randomness.