Vinyl
    Preparing search index...
    • Creates a function that is the composition of the provided functions. Each function consumes the return value of the function that follows.

      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 follows.

      Type Parameters

      • A
      • B
      • C

      Parameters

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

      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 follows.

      Type Parameters

      • A
      • B
      • C
      • D

      Parameters

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

      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 follows.

      Type Parameters

      • A
      • B
      • C
      • D
      • E

      Parameters

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

      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 follows.

      Type Parameters

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

      Parameters

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

      Returns (a: A) => F