1
1
mirror of https://github.com/github/semantic.git synced 2024-12-25 07:55:12 +03:00

Duplicate cata for CofreeType.

This commit is contained in:
Rob Rix 2015-11-02 17:20:42 -05:00
parent 4f03d5355b
commit ed9ca09909

View File

@ -120,6 +120,15 @@ extension CofreeType {
return (term.extract, term.unwrap)
}
/// Catamorphism over `TermType`s.
///
/// Folds the tree encoded by the receiver into a single value by recurring top-down through the tree, applying `transform` to leaves, then to branches, and so forth.
public func cata<Result>(transform: Syntax<Result, Leaf> -> Result) -> Result {
return self |> (Self.unwrap >>> { $0.map { $0.cata(transform) } } >>> transform)
}
/// Constructs a cofree by coiteration.
///
/// This is an _anamorphism_ (from the Greek ana, upwards; compare anabolism), a generalization of unfolds over regular trees (and datatypes isomorphic to them). The initial seed is used as the annotation of the returned value. The continuation of the structure is unpacked by applying `annotate` to the seed and mapping the resulting syntaxs values recursively. In this manner, the structure is unfolded bottom-up, starting with `seed` and ending at the leaves.