PotDisposer<T> typedef

PotDisposer<T> = void Function(T)

The signature of a callback that receives an object of type T to clean up resources associated with it.

Implementation

typedef PotDisposer<T> = void Function(T);