|
|
|
|
|
by skishore
3192 days ago
|
|
The type of a curried function in Typescript is just something like: (a: number) => (b: number) => (c: number) => number
Sure, the parameter names and parentheses are a bit annoying, but I wouldn't call that "very verbose". Comparable concepts in C++ or Java would be a nightmare to type out. |
|