interface Catamorphism<F, T> {
    cata<C>(l: ((e?: F) => C), r: ((v: T) => C)): C;
}

Type Parameters

  • F
  • T

Hierarchy-Diagram

UML class diagram of Catamorphism
Legend
icon for an interface in the UML class diagram interface
icon for a public method in the UML class diagram public method

Hierarchy (view full)

Methods

Methods

  • Type Parameters

    • C

    Parameters

    • l: ((e?: F) => C)
        • (e?: F): C
        • Parameters

          • Optional e: F

          Returns C

    • r: ((v: T) => C)
        • (v: T): C
        • Parameters

          Returns C

    Returns C