//===--- CollectionAlgorithms.swift.gyb -----------------------------------===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See http://swift.org/LICENSE.txt for license information // See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// %{ # We know we will eventually get a SequenceType.Element type. Define # a shorthand that we can use today. GElement = "Generator.Element" }% //===----------------------------------------------------------------------===// // last //===----------------------------------------------------------------------===// extension CollectionType where Index : BidirectionalIndexType { final public var last: Generator.Element? { return isEmpty ? nil : self[endIndex.predecessor()] } } //===----------------------------------------------------------------------===// // find() //===----------------------------------------------------------------------===// extension CollectionType where ${GElement} : Equatable { /// Returns the first index where `value` appears in `self` or `nil` if /// `value` is not found. /// /// - Complexity: O(`self.count()`) final public func indexOf(element: ${GElement}) -> Index? { if let result = _customIndexOfEquatableElement(element) { return result } for i in self.indices { if self[i] == element { return i } } return nil } } extension CollectionType { /// Returns the first index where `predicate` returns `true` for the /// corresponding value, or `nil` if such value is not found. /// /// - Complexity: O(`self.count()`) final public func indexOf( @noescape predicate: (${GElement}) -> Bool ) -> Index? { for i in self.indices { if predicate(self[i]) { return i } } return nil } } //===----------------------------------------------------------------------===// // indices //===----------------------------------------------------------------------===// extension CollectionType { /// Return the range of valid index values. /// /// The result's `endIndex` is the same as that of `self`. Because /// `Range` is half-open, iterating the values of the result produces /// all valid subscript arguments for `self`, omitting its `endIndex`. final public var indices: Range { return Range(start: startIndex, end: endIndex) } } //===----------------------------------------------------------------------===// // MutableCollectionType //===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===// // partition() //===----------------------------------------------------------------------===// %{ partitionDocComment = """\ /// Re-order the given `range` of elements in `self` and return /// a pivot index *p*. /// /// Postcondition: for all *i* in `range.startIndex..<`\ *p*, and *j* /// in *p*\ `..) -> Index { return _partition(&self, range) } } extension MutableCollectionType where Index : RandomAccessIndexType { ${partitionDocComment} /// ${orderingRequirementForPredicate} final public mutating func _prext_partition( range: Range, var isOrderedBefore: (${GElement}, ${GElement}) -> Bool ) -> Index { return _partition(&self, range, &isOrderedBefore) } }