Type alias Func<T, TResult>

Func<T, TResult>: ((x) => TResult)

Type Parameters

  • T

  • TResult

Type declaration

    • (x): TResult
    • Type representing a function accepting a single input of type T and returning a result of type TResult. an alternative to writing:

      (input: T) => TResult
      

      Parameters

      • x: T

      Returns TResult

Generated using TypeDoc