mirror of
https://github.com/github/semantic.git
synced 2024-12-03 22:54:16 +03:00
5 lines
64 B
Swift
5 lines
64 B
Swift
|
public enum Stream<A> {
|
||
|
case Nil
|
||
|
case Cons(A, () -> Stream)
|
||
|
}
|