template <typename FunctorType, typename ReturnType, typename... ArgTypes>
struct callable_traits
Defined at line 56 of file ../../sdk/lib/fit/include/lib/fit/traits.h
Treat mutable call operators the same as const call operators.
It would be equivalent to erase the const instead, but the common case is lambdas, which are
const, so prefer to nest less deeply for the common const case.