Pinned Loading
-
Common combinators in JavaScript
Common combinators in JavaScript 1const I = x => x;
2const K = x => y => x;
3const A = f => x => f(x);
4const T = x => f => f(x);
5const W = f => x => f(x)(x);
-
IO monad example in typescript
IO monad example in typescript 12interface IO<T> {
3(unsafeIO: Function): IO<T>;
4chain(fn: (a: T) => IO<T>): IO<T>
5of(performUnsafeIO: (a: T) => T): IO<T>;
-
rationale
rationale PublicForked from jonlaing/rationale
Collection of Algebraic Data Types and helper functions for ReasonML
OCaml 3
-
DataConstructors.ts
DataConstructors.ts 1abstract class Season {
2cata<W, Su, Sp, Au>(match: {
3Winter: () => W,
4Summer: () => Su,
5Autumn: () => Au,
-
functionalDataStructures.md
functionalDataStructures.md 1## Books
23** [] https://www.cs.cmu.edu/~rwh/theses/okasaki.pdf
45## Tutorials
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.