template <typename FunctorType, typename ReturnType, typename... ArgTypes>

struct callable_traits

Defined at line 34 of file ../../sdk/lib/fidl_base/include/lib/fidl/internal_callable_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.