1
1
mirror of https://github.com/github/semantic.git synced 2024-12-03 22:54:16 +03:00
semantic/prototype/Doubt/Stream.swift

5 lines
64 B
Swift
Raw Normal View History

2015-09-16 18:42:49 +03:00
public enum Stream<A> {
case Nil
case Cons(A, () -> Stream)
}