Skip to content
View lupuszr's full-sized avatar

Organizations

@filmineio @alt-labs @web3mine
Block or Report

Block or report lupuszr

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Common combinators in JavaScript Common combinators in JavaScript
    1
    const I = x => x;
    2
    const K = x => y => x;
    3
    const A = f => x => f(x);
    4
    const T = x => f => f(x);
    5
    const W = f => x => f(x)(x);
  2. IO monad example in typescript IO monad example in typescript
    1
    
                  
    2
    interface IO<T> {
    3
       (unsafeIO: Function): IO<T>; 
    4
       chain(fn: (a: T) => IO<T>): IO<T>
    5
       of(performUnsafeIO: (a: T) => T): IO<T>;
  3. rationale rationale Public

    Forked from jonlaing/rationale

    Collection of Algebraic Data Types and helper functions for ReasonML

    OCaml 3

  4. DataConstructors.ts DataConstructors.ts
    1
    abstract class Season {
    2
      cata<W, Su, Sp, Au>(match: { 
    3
        Winter: () => W,
    4
        Summer: () => Su,
    5
        Autumn: () => Au,
  5. functionalDataStructures.md functionalDataStructures.md
    1
    ## Books
    2
    
                  
    3
    ** [] https://www.cs.cmu.edu/~rwh/theses/okasaki.pdf
    4
    
                  
    5
    ## Tutorials
  6. fantasy-ts fantasy-ts Public

    An easy to read and beginner friendly fp lib

    TypeScript