ykankaya / fantasy-cofrees

Cofree comonad structure.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fantasy Cofrees

The Cofree Comonad for Functors.

Examples

Non-empty list using Cofree and Option:

var nel = Cofree(
    1,
    Option.Some(
        Cofree(
            2,
            Option.None
        )
    )
);

About

Cofree comonad structure.


Languages

Language:JavaScript 100.0%