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

Method apply_single

include/chaiscript/dispatchkit/dispatchkit.hpp:242–249  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240
241 template<typename T, typename InItr>
242 static void apply_single(InItr begin, InItr end, T &t)
243 {
244 while (begin != end)
245 {
246 t.add(*begin);
247 ++begin;
248 }
249 }
250
251 template<typename T, typename InItr>
252 static void apply_eval(InItr begin, InItr end, T &t)

Callers

nothing calls this directly

Calls 1

addMethod · 0.45

Tested by

no test coverage detected