MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / marshallEach

Method marshallEach

Engine/source/console/engineAPI.h:565–565  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

563
564 template<typename ArgVT> struct MarshallHelpers {
565 template<typename ...ArgTs> static void marshallEach(S32 &argc, ArgVT *argv, const ArgTs& ...args){}
566 template<typename H, typename ...Tail> static void marshallEach(S32 &argc, ArgVT *argv, const H& head, const Tail& ...tail){
567 argv[argc++] = EngineMarshallData(head);
568 marshallEach(argc, argv, tail...);

Callers

nothing calls this directly

Calls 1

EngineMarshallDataFunction · 0.85

Tested by

no test coverage detected