1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 17:04:47 +03:00

Xcode did not delete this before, apparently.

This commit is contained in:
Rob Rix 2015-09-25 12:37:42 -04:00
parent 39c46edeb9
commit 21f3bc9dcc

View File

@ -32,7 +32,7 @@ public enum Vertex<Element> {
public var diagonal: Memo<Vertex> {
return right.flatMap { $0.down }
}
public init<S1: SequenceType, S2: SequenceType>(rows: S1, columns: S2, combine: (S1.Generator.Element, S2.Generator.Element) -> Element) {
let rows = Stream(sequence: rows)