Options
All
  • Public
  • Public/Protected
  • All
Menu

Module "thread-first"

Index

Functions

Functions

Const threadFirst

  • threadFirst(init: any, ...fns: (FnAny<any> | [FnAny<any>, any])[]): any
  • Takes an init value and a number of functions and/or function tuples, consisting of: [fn, ...args]. Executes each function (or tuple) with the return value of the previous expression inserted as first argument, using init for the first expression.

    example
    const neg = (x) => -x;
    const sub = (a, b) => a - b;
    const div = (a, b) => a / b;
    
    threadFirst(
      5,
      neg,       // -5
      [sub, 20], // -5 - 20 = -25
      [div, 10]  // -25 / 10 = -2.5
    );
    
    // -2.5

    threadLast

    Parameters

    • init: any

      start value

    • Rest ...fns: (FnAny<any> | [FnAny<any>, any])[]

      functions / S-expressions

    Returns any

Generated using TypeDoc