MCPcopy Create free account
hub / github.com/cucumber/cucumber-cpp / invokeWithArgs

Function invokeWithArgs

include/cucumber-cpp/internal/step/StepManager.hpp:140–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138
139 template<typename Derived, typename R, typename... Args>
140 static R invokeWithArgs(Derived& that, R (Derived::*f)(Args...)) {
141 that.currentArgIndex = sizeof...(Args);
142 return invokeWithIndexedArgs(that, f, index_sequence_for<Args...>{});
143 }
144
145private:
146 // FIXME: awful hack because of Boost::Test

Callers 1

bodyMethod · 0.50

Calls 1

invokeWithIndexedArgsFunction · 0.85

Tested by 1

bodyMethod · 0.40