1
1
mirror of https://github.com/github/semantic.git synced 2024-11-30 06:07:23 +03:00
semantic/prototype/Doubt/Fix.swift

43 lines
1.5 KiB
Swift
Raw Normal View History

2015-10-02 20:54:34 +03:00
/// The fixpoint of `Syntax`.
2015-10-02 20:21:43 +03:00
///
2015-10-02 20:54:34 +03:00
/// `Syntax` is a non-recursive type parameterized by the type of its child nodes. Instantiating it to `Fix` makes it into a recursive tree by tying the knoteach child node of `Syntax<Fix, A>` is represented by a `Fix` which in turn contains a `Syntax<Fix, A>`. So in the same way that the `fix` function allows one to tie a non-recursive function into a recursive one, `Fix` allows one to tie a non-recursive type into a recursive one. Unfortunately, due to Swifts lack of higher-rank types, this cannot currently be abstracted over the type which is made recursive, and thus it is hard-coded to `Syntax<Fix, A>` rather than provided by a type parameter `F` applied to `Fix<F>`.
2015-10-02 20:42:55 +03:00
public enum Fix<A> {
2015-10-02 21:08:03 +03:00
/// A recursive instantiation of `Syntax`, unrolling another iteration of the recursive type.
2015-10-02 20:21:43 +03:00
indirect case In(Syntax<Fix, A>)
2015-10-02 20:42:55 +03:00
public var out: Syntax<Fix, A> {
2015-10-02 20:21:43 +03:00
switch self {
case let .In(s):
return s
}
}
}
2015-10-02 21:17:25 +03:00
// MARK: - Equality
extension Fix {
public static func equals(param: (A, A) -> Bool)(_ left: Fix, _ right: Fix) -> Bool {
2015-10-02 23:28:57 +03:00
return Syntax.equals(ifLeaf: param, ifRecur: equals(param))(left.out, right.out)
2015-10-02 21:17:25 +03:00
}
}
2015-10-02 21:17:59 +03:00
public func == <A: Equatable> (left: Fix<A>, right: Fix<A>) -> Bool {
return Fix.equals(==)(left, right)
}
2015-10-02 23:31:10 +03:00
// MARK: - Hashing
extension Fix {
public func hash(param: A -> Hash) -> Hash {
return out.hash(ifLeaf: param, ifRecur: { $0.hash(param) })
}
}
extension Fix where A: Hashable {
var hash: Hash {
return hash(Hash.init)
}
}