For the first time I tried to call a templated lambda in C 20.
If the argument is deductible calling it is easy, but if it is not I only managed to call them like this:
coolFunc.template operator<CoolClass>()
Feels like a little bit over the top, but maybe that's how it is.