MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / apply_eval

Method apply_eval

include/chaiscript/dispatchkit/dispatchkit.hpp:252–259  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

250
251 template<typename T, typename InItr>
252 static void apply_eval(InItr begin, InItr end, T &t)
253 {
254 while (begin != end)
255 {
256 t.eval(*begin);
257 ++begin;
258 }
259 }
260 };
261
262 /// Convenience typedef for Module objects to be added to the ChaiScript runtime

Callers

nothing calls this directly

Calls 1

evalMethod · 0.45

Tested by

no test coverage detected