Pacote
    Preparing search index...
    • Executes the provided callback function on each element of the list, resulting in a single output value, which gets successively passed to the callback function in the next execution.

      The first time the callback function is executed, it receives the initial value.

      The result of the last execution of the callback function is returned.

      Type Parameters

      • T
      • R

      Parameters

      • callback: ReduceCallback<T, R>

        Callback function.

      • initial: R

        Initial value.

      • list: LinkedList<T>

        Linked list.

      Returns R

      Result of the last execution of the callback.