Skip to content

Commit ad839c4

Browse files
author
Simon Whitaker
committed
Merge upstream master
2 parents fb523d6 + ecaf749 commit ad839c4

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

Multiset/README.markdown

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ Here's the essence of it:
5151
``` swift
5252
public struct Multiset<Element: Hashable> {
5353
private var storage: [Element: UInt] = [:]
54+
55+
public init() {}
5456
```
5557

5658
And here's how you'd use this class to create a multiset of strings:

Radix Sort/RadixSort.playground/Contents.swift

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
import Cocoa
44

5+
// last checked with Xcode 9.0b4
6+
#if swift(>=4.0)
7+
print("Hello, Swift 4!")
8+
#endif
9+
510
// Test Radix Sort with small array of ten values
611
var array: [Int] = [19, 4242, 2, 9, 912, 101, 55, 67, 89, 32]
712
radixSort(&array)

Radix Sort/Tests/RadixSortTests.swift

+7
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@
99
import XCTest
1010

1111
class RadixSortTests: XCTestCase {
12+
func testSwift4() {
13+
// last checked with Xcode 9.0b4
14+
#if swift(>=4.0)
15+
print("Hello, Swift 4!")
16+
#endif
17+
}
18+
1219
func testCombSort() {
1320
let expectedSequence: [Int] = [2, 9, 19, 32, 55, 67, 89, 101, 912, 4242]
1421
var sequence = [19, 4242, 2, 9, 912, 101, 55, 67, 89, 32]

Radix Sort/Tests/Tests.xcodeproj/project.pbxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@
179179
SDKROOT = macosx;
180180
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
181181
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
182+
SWIFT_VERSION = 4.0;
182183
};
183184
name = Debug;
184185
};
@@ -220,6 +221,7 @@
220221
MTL_ENABLE_DEBUG_INFO = NO;
221222
SDKROOT = macosx;
222223
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
224+
SWIFT_VERSION = 4.0;
223225
};
224226
name = Release;
225227
};
@@ -233,7 +235,7 @@
233235
PRODUCT_BUNDLE_IDENTIFIER = Swift.Algorithm.Club.Tests;
234236
PRODUCT_NAME = "$(TARGET_NAME)";
235237
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
236-
SWIFT_VERSION = 3.0;
238+
SWIFT_VERSION = 4.0;
237239
};
238240
name = Debug;
239241
};
@@ -246,7 +248,7 @@
246248
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
247249
PRODUCT_BUNDLE_IDENTIFIER = Swift.Algorithm.Club.Tests;
248250
PRODUCT_NAME = "$(TARGET_NAME)";
249-
SWIFT_VERSION = 3.0;
251+
SWIFT_VERSION = 4.0;
250252
};
251253
name = Release;
252254
};

0 commit comments

Comments
 (0)