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

74 lines
1.6 KiB
Swift
Raw Normal View History

2015-09-17 21:12:39 +03:00
public enum Stream<A>: NilLiteralConvertible, SequenceType {
2015-09-16 18:42:49 +03:00
case Nil
indirect case Cons(A, Memo<Stream>)
2015-09-16 18:44:56 +03:00
public init<S: SequenceType where S.Generator.Element == A>(sequence: S) {
self = Stream(generator: sequence.generate())
}
public init<G: GeneratorType where G.Element == A>(var generator: G) {
self = Stream { generator.next() }
}
public init(_ f: () -> A?) {
2015-09-16 20:44:02 +03:00
self = f().map { Stream.Cons($0, Memo { Stream(f) }) } ?? Stream.Nil
}
2015-09-17 21:23:33 +03:00
public func analysis<B>(@noescape ifCons ifCons: (A, Memo<Stream>) -> B, @noescape ifNil: () -> B) -> B {
switch self {
case let .Cons(first, rest):
return ifCons(first, rest)
case .Nil:
return ifNil()
}
}
public var uncons: (first: A, rest: Memo<Stream>)? {
return analysis(ifCons: { $0 }, ifNil: { nil })
2015-09-16 18:44:56 +03:00
}
public var first: A? {
return uncons?.first
}
2015-09-17 21:26:25 +03:00
public var rest: Memo<Stream> {
return analysis(ifCons: { $1 }, ifNil: { Memo(evaluated: .Nil) })
2015-09-16 18:44:56 +03:00
}
2015-09-16 18:56:06 +03:00
public var isEmpty: Bool {
return uncons == nil
}
2015-09-16 19:27:23 +03:00
public func map<B>(transform: A -> B) -> Stream<B> {
return analysis(
2015-09-17 21:30:41 +03:00
ifCons: { .Cons(transform($0), $1.map { $0.map(transform) }) },
ifNil: { nil })
2015-09-16 19:27:23 +03:00
}
2015-09-16 19:28:45 +03:00
2015-09-17 21:14:01 +03:00
public func concat(other: Stream) -> Stream {
switch self {
case .Nil:
return other
case let .Cons(first, rest):
return .Cons(first, rest.map { $0.concat(other) })
}
}
2015-09-17 21:12:39 +03:00
public init(nilLiteral: ()) {
self = .Nil
}
2015-09-16 19:28:45 +03:00
public func generate() -> AnyGenerator<A> {
2015-09-17 21:27:52 +03:00
var current = Memo(evaluated: self)
2015-09-16 19:28:45 +03:00
return anyGenerator {
2015-09-17 21:27:52 +03:00
let next = current.value.first
current = current.value.rest
2015-09-16 19:28:45 +03:00
return next
}
}
2015-09-16 18:42:49 +03:00
}