Tag: function-object

  • What’s the meaning of &T::operator() in function traits?

    What’s the meaning of &T::operator() in function traits?

    6 // Fallback, anything with an operator() template <typename T> struct function_traits : public function_traits<decltype(&T::operator())> > { }; What does T::operator() mean here? This is code from pytorch. c++ function-object Share Improve this question Follow edited 14 hours ago Jan Schultke 14k44 gold badges4242 silver badges8383 bronze badges asked 18 hours ago ben19900305ben19900305 6333 bronze…