1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 21:43:07 +03:00
semantic/prototype/Doubt/Cofree.swift
2015-10-14 10:03:42 -04:00

33 lines
619 B
Swift

// Copyright © 2015 GitHub. All rights reserved.
public enum Cofree<A, B> {
indirect case Unroll(B, Syntax<Cofree, A>)
public var unwrap: Syntax<Cofree, A> {
switch self {
case let .Unroll(_, rest):
return rest
}
}
}
// MARK: - Comonad
extension Cofree {
public var extract: B {
switch self {
case let .Unroll(b, _):
return b
}
}
public func extend<Other>(transform: Cofree -> Other) -> Cofree<A, Other> {
return .Unroll(transform(self), unwrap.map { $0.extend(transform) })
}
public var duplicate: Cofree<A, Cofree<A, B>> {
return .Unroll(self, unwrap.map { $0.duplicate })
}
}