ponder
3.2
C++ reflection library
|
Return multiple values. More...
#include <type.hpp>
Static Public Attributes | |
static constexpr ReturnKind | kind = ReturnKind::Multiple |
The policy enum kind. | |
Return multiple values.
When added to a function declaration this sets the call return policy to support multiple value returning. The function should return a std::tuple<...>
containing the multiple values. Note that the tuple needs to be declared as a type.