ResultUpdateFunction<T> typedef

ResultUpdateFunction<T> = T Function(T result)

A function that takes the current result of type T and returns an updated result. Useful for performing transformations or updates in a functional style.

Implementation

typedef ResultUpdateFunction<T> = T Function(T result);