@tempots/std > Fun3
Represents a function that takes three arguments of types A, B, and C, and returns a value of type R.
Signature:
export type Fun3<A, B, C, R> = (a: A, b: B, c: C) => R;