mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* Refactor Indices and Slice to use conditional conformance * Replace ReversedRandomAccessCollection with a conditional extension * Refactor some types into struct+extensions * Revise Slice documentation * Fix test cases for adoption of conditional conformances. * [RangeReplaceableCollection] Eliminate unnecessary slicing subscript operator. * Add -enable-experimental-conditional-conformances to test. * Gruesome workaround for crasher in MutableSlice tests
341 lines
11 KiB
Swift
341 lines
11 KiB
Swift
//===--- Reverse.swift - Sequence and collection reversal -----------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
extension MutableCollection where Self : BidirectionalCollection {
|
|
/// Reverses the elements of the collection in place.
|
|
///
|
|
/// The following example reverses the elements of an array of characters:
|
|
///
|
|
/// var characters: [Character] = ["C", "a", "f", "é"]
|
|
/// characters.reverse()
|
|
/// print(characters)
|
|
/// // Prints "["é", "f", "a", "C"]
|
|
///
|
|
/// - Complexity: O(*n*), where *n* is the number of elements in the
|
|
/// collection.
|
|
@_inlineable // FIXME(sil-serialize-all)
|
|
public mutating func reverse() {
|
|
if isEmpty { return }
|
|
var f = startIndex
|
|
var l = index(before: endIndex)
|
|
while f < l {
|
|
swapAt(f, l)
|
|
formIndex(after: &f)
|
|
formIndex(before: &l)
|
|
}
|
|
}
|
|
}
|
|
|
|
/// An iterator that can be much faster than the iterator of a reversed slice.
|
|
// TODO: See about using this in more places
|
|
@_fixed_layout
|
|
public struct _ReverseIndexingIterator<
|
|
Elements : BidirectionalCollection
|
|
> : IteratorProtocol, Sequence {
|
|
|
|
@_inlineable
|
|
@inline(__always)
|
|
/// Creates an iterator over the given collection.
|
|
public /// @testable
|
|
init(_elements: Elements, _position: Elements.Index) {
|
|
self._elements = _elements
|
|
self._position = _position
|
|
}
|
|
|
|
@_inlineable
|
|
@inline(__always)
|
|
public mutating func next() -> Elements.Element? {
|
|
guard _fastPath(_position != _elements.startIndex) else { return nil }
|
|
_position = _elements.index(before: _position)
|
|
return _elements[_position]
|
|
}
|
|
|
|
@_versioned
|
|
internal let _elements: Elements
|
|
@_versioned
|
|
internal var _position: Elements.Index
|
|
}
|
|
|
|
/// An index that traverses the same positions as an underlying index,
|
|
/// with inverted traversal direction.
|
|
@_fixed_layout
|
|
public struct ReversedIndex<Base : Collection> : Comparable {
|
|
/// Creates a new index into a reversed collection for the position before
|
|
/// the specified index.
|
|
///
|
|
/// When you create an index into a reversed collection using `base`, an
|
|
/// index from the underlying collection, the resulting index is the
|
|
/// position of the element *before* the element referenced by `base`. The
|
|
/// following example creates a new `ReversedIndex` from the index of the
|
|
/// `"a"` character in a string's character view.
|
|
///
|
|
/// let name = "Horatio"
|
|
/// let aIndex = name.index(of: "a")!
|
|
/// // name[aIndex] == "a"
|
|
///
|
|
/// let reversedName = name.reversed()
|
|
/// let i = ReversedIndex<String>(aIndex)
|
|
/// // reversedName[i] == "r"
|
|
///
|
|
/// The element at the position created using `ReversedIndex<...>(aIndex)` is
|
|
/// `"r"`, the character before `"a"` in the `name` string.
|
|
///
|
|
/// - Parameter base: The position after the element to create an index for.
|
|
@_inlineable
|
|
public init(_ base: Base.Index) {
|
|
self.base = base
|
|
}
|
|
|
|
/// The position after this position in the underlying collection.
|
|
///
|
|
/// To find the position that corresponds with this index in the original,
|
|
/// underlying collection, use that collection's `index(before:)` method
|
|
/// with the `base` property.
|
|
///
|
|
/// The following example declares a function that returns the index of the
|
|
/// last even number in the passed array, if one is found. First, the
|
|
/// function finds the position of the last even number as a `ReversedIndex`
|
|
/// in a reversed view of the array of numbers. Next, the function calls the
|
|
/// array's `index(before:)` method to return the correct position in the
|
|
/// passed array.
|
|
///
|
|
/// func indexOfLastEven(_ numbers: [Int]) -> Int? {
|
|
/// let reversedNumbers = numbers.reversed()
|
|
/// guard let i = reversedNumbers.index(where: { $0 % 2 == 0 })
|
|
/// else { return nil }
|
|
///
|
|
/// return numbers.index(before: i.base)
|
|
/// }
|
|
///
|
|
/// let numbers = [10, 20, 13, 19, 30, 52, 17, 40, 51]
|
|
/// if let lastEven = indexOfLastEven(numbers) {
|
|
/// print("Last even number: \(numbers[lastEven])")
|
|
/// }
|
|
/// // Prints "Last even number: 40"
|
|
public let base: Base.Index
|
|
|
|
@_inlineable
|
|
public static func == (
|
|
lhs: ReversedIndex<Base>,
|
|
rhs: ReversedIndex<Base>
|
|
) -> Bool {
|
|
return lhs.base == rhs.base
|
|
}
|
|
|
|
@_inlineable
|
|
public static func < (
|
|
lhs: ReversedIndex<Base>,
|
|
rhs: ReversedIndex<Base>
|
|
) -> Bool {
|
|
// Note ReversedIndex has inverted logic compared to base Base.Index
|
|
return lhs.base > rhs.base
|
|
}
|
|
}
|
|
|
|
extension ReversedIndex : Hashable where Base.Index : Hashable {
|
|
public var hashValue: Int {
|
|
return base.hashValue
|
|
}
|
|
}
|
|
|
|
/// A collection that presents the elements of its base collection
|
|
/// in reverse order.
|
|
///
|
|
/// - Note: This type is the result of `x.reversed()` where `x` is a
|
|
/// collection having bidirectional indices.
|
|
///
|
|
/// The `reversed()` method is always lazy when applied to a collection
|
|
/// with bidirectional indices, but does not implicitly confer
|
|
/// laziness on algorithms applied to its result. In other words, for
|
|
/// ordinary collections `c` having bidirectional indices:
|
|
///
|
|
/// * `c.reversed()` does not create new storage
|
|
/// * `c.reversed().map(f)` maps eagerly and returns a new array
|
|
/// * `c.lazy.reversed().map(f)` maps lazily and returns a `LazyMapCollection`
|
|
///
|
|
/// - See also: `ReversedRandomAccessCollection`
|
|
@_fixed_layout
|
|
public struct ReversedCollection<Base: BidirectionalCollection>: BidirectionalCollection {
|
|
/// Creates an instance that presents the elements of `base` in
|
|
/// reverse order.
|
|
///
|
|
/// - Complexity: O(1)
|
|
@_versioned
|
|
@_inlineable
|
|
internal init(_base: Base) {
|
|
self._base = _base
|
|
}
|
|
|
|
/// A type that represents a valid position in the collection.
|
|
///
|
|
/// Valid indices consist of the position of every element and a
|
|
/// "past the end" position that's not valid for use as a subscript.
|
|
public typealias Index = ReversedIndex<Base>
|
|
|
|
public typealias IndexDistance = Base.IndexDistance
|
|
|
|
@_fixed_layout
|
|
public struct Iterator : IteratorProtocol, Sequence {
|
|
@_inlineable
|
|
@inline(__always)
|
|
public /// @testable
|
|
init(elements: Base, endPosition: Base.Index) {
|
|
self._elements = elements
|
|
self._position = endPosition
|
|
}
|
|
|
|
@_inlineable
|
|
@inline(__always)
|
|
public mutating func next() -> Base.Iterator.Element? {
|
|
guard _fastPath(_position != _elements.startIndex) else { return nil }
|
|
_position = _elements.index(before: _position)
|
|
return _elements[_position]
|
|
}
|
|
|
|
@_versioned
|
|
internal let _elements: Base
|
|
@_versioned
|
|
internal var _position: Base.Index
|
|
}
|
|
|
|
@_inlineable
|
|
@inline(__always)
|
|
public func makeIterator() -> Iterator {
|
|
return Iterator(elements: _base, endPosition: _base.endIndex)
|
|
}
|
|
|
|
@_inlineable
|
|
public var startIndex: Index {
|
|
return ReversedIndex(_base.endIndex)
|
|
}
|
|
|
|
@_inlineable
|
|
public var endIndex: Index {
|
|
return ReversedIndex(_base.startIndex)
|
|
}
|
|
|
|
@_inlineable
|
|
public func index(after i: Index) -> Index {
|
|
return ReversedIndex(_base.index(before: i.base))
|
|
}
|
|
|
|
@_inlineable
|
|
public func index(before i: Index) -> Index {
|
|
return ReversedIndex(_base.index(after: i.base))
|
|
}
|
|
|
|
@_inlineable
|
|
public func index(_ i: Index, offsetBy n: IndexDistance) -> Index {
|
|
// FIXME: swift-3-indexing-model: `-n` can trap on Int.min.
|
|
return ReversedIndex(_base.index(i.base, offsetBy: -n))
|
|
}
|
|
|
|
@_inlineable
|
|
public func index(
|
|
_ i: Index, offsetBy n: IndexDistance, limitedBy limit: Index
|
|
) -> Index? {
|
|
// FIXME: swift-3-indexing-model: `-n` can trap on Int.min.
|
|
return _base.index(i.base, offsetBy: -n, limitedBy: limit.base)
|
|
.map(ReversedIndex.init)
|
|
}
|
|
|
|
@_inlineable
|
|
public func distance(from start: Index, to end: Index) -> IndexDistance {
|
|
return _base.distance(from: end.base, to: start.base)
|
|
}
|
|
|
|
@_inlineable
|
|
public subscript(position: Index) -> Base.Element {
|
|
return _base[_base.index(before: position.base)]
|
|
}
|
|
|
|
@_inlineable
|
|
public subscript(bounds: Range<Index>) -> Slice<ReversedCollection> {
|
|
return Slice(base: self, bounds: bounds)
|
|
}
|
|
|
|
public let _base: Base
|
|
}
|
|
|
|
extension ReversedCollection: RandomAccessCollection where Base: RandomAccessCollection { }
|
|
|
|
@available(*, deprecated, renamed: "ReversedCollection")
|
|
public typealias ReversedRandomAccessCollection<T: RandomAccessCollection> = ReversedCollection<T>
|
|
|
|
extension BidirectionalCollection {
|
|
/// Returns a view presenting the elements of the collection in reverse
|
|
/// order.
|
|
///
|
|
/// You can reverse a collection without allocating new space for its
|
|
/// elements by calling this `reversed()` method. A `ReversedCollection`
|
|
/// instance wraps an underlying collection and provides access to its
|
|
/// elements in reverse order. This example prints the characters of a
|
|
/// string in reverse order:
|
|
///
|
|
/// let word = "Backwards"
|
|
/// for char in word.reversed() {
|
|
/// print(char, terminator: "")
|
|
/// }
|
|
/// // Prints "sdrawkcaB"
|
|
///
|
|
/// If you need a reversed collection of the same type, you may be able to
|
|
/// use the collection's sequence-based or collection-based initializer. For
|
|
/// example, to get the reversed version of a string, reverse its
|
|
/// characters and initialize a new `String` instance from the result.
|
|
///
|
|
/// let reversedWord = String(word.reversed())
|
|
/// print(reversedWord)
|
|
/// // Prints "sdrawkcaB"
|
|
///
|
|
/// - Complexity: O(1)
|
|
@_inlineable
|
|
public func reversed() -> ReversedCollection<Self> {
|
|
return ReversedCollection(_base: self)
|
|
}
|
|
}
|
|
|
|
extension LazyCollectionProtocol
|
|
where
|
|
Self : BidirectionalCollection,
|
|
Elements : BidirectionalCollection {
|
|
|
|
/// Returns the elements of the collection in reverse order.
|
|
///
|
|
/// - Complexity: O(1)
|
|
@_inlineable
|
|
public func reversed() -> LazyBidirectionalCollection<
|
|
ReversedCollection<Elements>
|
|
> {
|
|
return ReversedCollection(_base: elements).lazy
|
|
}
|
|
}
|
|
|
|
extension LazyCollectionProtocol
|
|
where
|
|
Self : RandomAccessCollection,
|
|
Elements : RandomAccessCollection {
|
|
|
|
/// Returns the elements of the collection in reverse order.
|
|
///
|
|
/// - Complexity: O(1)
|
|
@_inlineable
|
|
public func reversed() -> LazyRandomAccessCollection<
|
|
ReversedCollection<Elements>
|
|
> {
|
|
return ReversedCollection(_base: elements).lazy
|
|
}
|
|
}
|
|
|
|
// ${'Local Variables'}:
|
|
// eval: (read-only-mode 1)
|
|
// End:
|