Skip to content

Commit b195245

Browse files
authored
Merge pull request #540 from remlostime/ordered-array-swift
[Swift 4] Update Ordered Array
2 parents b8a2f19 + afcfa80 commit b195245

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Ordered Array/OrderedArray.playground/Contents.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
//: Playground - noun: a place where people can play
22

3+
// last checked with Xcode 9.0b4
4+
#if swift(>=4.0)
5+
print("Hello, Swift 4!")
6+
#endif
7+
38
public struct OrderedArray<T: Comparable> {
49
fileprivate var array = [T]()
510

Ordered Array/OrderedArray.playground/timeline.xctimeline

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)