Type Alias Iteratee<T, R>

Iteratee: (value: T) => R

A function that does something with value of type T and transforms it into type R.

Type Parameters

  • T
  • R

Type declaration

    • (value: T): R
    • Parameters

      • value: T

      Returns R