Vinyl
    Preparing search index...

    Function flowRight

    • Creates a function that is the composition of the provided functions. Each function consumes the return value of the function that precedes.

      Type Parameters

      • A
      • B

      Parameters

      • f1: (a: A) => B

      Returns (a: A) => B

    • Creates a function that is the composition of the provided functions. Each function consumes the return value of the function that precedes.

      Type Parameters

      • A
      • B
      • C

      Parameters

      • f1: (b: B) => C
      • f2: (a: A) => B

      Returns (a: A) => C

    • Creates a function that is the composition of the provided functions. Each function consumes the return value of the function that precedes.

      Type Parameters

      • A
      • B
      • C
      • D

      Parameters

      • f1: (c: C) => D
      • f2: (b: B) => C
      • f3: (a: A) => B

      Returns (a: A) => D

    • Creates a function that is the composition of the provided functions. Each function consumes the return value of the function that precedes.

      Type Parameters

      • A
      • B
      • C
      • D
      • E

      Parameters

      • f1: (d: D) => E
      • f2: (c: C) => D
      • f3: (b: B) => C
      • f4: (a: A) => B

      Returns (a: A) => E

    • Creates a function that is the composition of the provided functions. Each function consumes the return value of the function that precedes.

      Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F

      Parameters

      • f1: (e: E) => F
      • f2: (d: D) => E
      • f3: (c: C) => D
      • f4: (b: B) => C
      • f5: (a: A) => B

      Returns (a: A) => F