MCPcopy Create free account
hub / github.com/csyonghe/Spire / MakeArray

Function MakeArray

Source/CoreLib/Array.h:137–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135
136 template<typename ...TArgs>
137 auto MakeArray(TArgs ...args)
138 {
139 Array<typename FirstType<TArgs...>::type, sizeof...(args)> rs;
140 InsertArray(rs, args...);
141 return rs;
142 }
143 }
144}
145

Callers

nothing calls this directly

Calls 1

InsertArrayFunction · 0.85

Tested by

no test coverage detected