mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
...replacing it with the new, after passing API review! * The lazy free function has become a property. * Before we could extend protocols, we lacked a means for value types to share implementations, and each new lazy algorithm had to be added to each of up to four types: LazySequence, LazyForwardCollection, LazyBidirectionalCollection, and LazyRandomAccessCollection. These generic adapters hid the usual algorithms by defining their own versions that returned new lazy generic adapters. Now users can extend just one of two protocols to do the same thing: LazySequenceType or LazyCollectionType. * To avoid making the code duplication worse than it already was, the generic adapters mentioned above were used to add the lazy generic algorithms around simpler adapters such as MapSequence that just provided the basic requirements of SequenceType by applying a transformation to some base sequence, resulting in deeply nested generic types as shown here. Now, MapSequence is an instance of LazySequenceType (and is renamed LazyMapSequence), and thus transmits laziness to its algorithms automatically. * Documentation comments have been rewritten. * The .array property was retired * various renamings * A bunch of Gyb files were retired. Swift SVN r30902
103 lines
2.8 KiB
Swift
103 lines
2.8 KiB
Swift
//===--- Map.swift - tests for lazy mapping -------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// RUN: %target-run-simple-swift | FileCheck %s
|
|
// REQUIRES: executable_test
|
|
|
|
// Check that the generic parameters are called 'Base' and 'Element'.
|
|
protocol TestProtocol1 {}
|
|
|
|
extension LazyMapGenerator where Base : TestProtocol1, Element : TestProtocol1 {
|
|
var _baseIsTestProtocol1: Bool {
|
|
fatalError("not implemented")
|
|
}
|
|
}
|
|
|
|
extension LazyMapSequence where Base : TestProtocol1, Element : TestProtocol1 {
|
|
var _baseIsTestProtocol1: Bool {
|
|
fatalError("not implemented")
|
|
}
|
|
}
|
|
|
|
extension LazyMapCollection where Base : TestProtocol1, Element : TestProtocol1 {
|
|
var _baseIsTestProtocol1: Bool {
|
|
fatalError("not implemented")
|
|
}
|
|
}
|
|
|
|
// CHECK: testing...
|
|
print("testing...")
|
|
|
|
// Test mapping a collection
|
|
// CHECK-NEXT: [6, 9, 12, 15, 18, 21]
|
|
let a = Array((2..<8).lazy.map { $0 * 3 })
|
|
print(a)
|
|
|
|
// Test mapping a sequence
|
|
let s = a.generate().lazy.map { $0 / 3 }
|
|
// CHECK-NEXT: <2, 3, 4, 5, 6, 7>
|
|
print("<", appendNewline: false)
|
|
var prefix = ""
|
|
for x in s {
|
|
print("\(prefix)\(x)", appendNewline: false)
|
|
prefix = ", "
|
|
}
|
|
print(">")
|
|
|
|
//===--- Avoid creating gratutitously self-destructive sequences ----------===//
|
|
|
|
// In a naive implementation, mapping over a non-self-destructive
|
|
// SequenceType having a reference-semantics GeneratorType produces a
|
|
// self-destructive mapped view. This is technically correct because
|
|
// Sequences are allowed to be self-destructive, and theoretically
|
|
// every multi-pass SequenceType would be a CollectionType, but Sequences are
|
|
// much easier to build than Collections and it would be extremely
|
|
// surprising for users if their mappings were not stable.
|
|
|
|
// A GeneratorType with reference semantics
|
|
class Counter : GeneratorType {
|
|
func next() -> Int? {
|
|
return n < end ? n++ : nil
|
|
}
|
|
|
|
init(_ n: Int, _ end: Int) {
|
|
self.n = n
|
|
self.end = end
|
|
}
|
|
|
|
var n: Int
|
|
var end: Int
|
|
}
|
|
|
|
// A SequenceType with value semantics
|
|
struct IntRange : SequenceType {
|
|
func generate() -> Counter {
|
|
return Counter(start, end)
|
|
}
|
|
|
|
var start: Int
|
|
var end: Int
|
|
}
|
|
|
|
|
|
// Make sure we can iterate a mapped view of IntRange without
|
|
// consuming it.
|
|
let m1 = IntRange(start: 1, end: 5).lazy.map { $0 * 2 }
|
|
// CHECK-NEXT: [2, 4, 6, 8]
|
|
print(Array(m1))
|
|
|
|
// A second iteration produces the same result.
|
|
// CHECK-NEXT: [2, 4, 6, 8]
|
|
print(Array(m1))
|
|
|
|
// CHECK-NEXT: all done.
|
|
print("all done.")
|