MCPcopy Create free account
hub / github.com/davisking/dlib / operator()

Method operator()

dlib/functional.h:346–351  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

344
345 template<class ...Rest>
346 constexpr auto operator()(Rest&&... rest)
347 noexcept(noexcept(binder_run(std::declval<binder_wrapper&>(), std::integral_constant<bool, Back>{}, index_sequence_for<Args...>{}, std::forward<Rest>(rest)...)))
348 -> decltype(binder_run(std::declval<binder_wrapper&>(), std::integral_constant<bool, Back>{}, index_sequence_for<Args...>{}, std::forward<Rest>(rest)...))
349 {
350 return binder_run(*this, std::integral_constant<bool, Back>{}, index_sequence_for<Args...>{}, std::forward<Rest>(rest)...);
351 }
352 };
353
354 template<bool Back, class F, class... Args>

Callers

nothing calls this directly

Calls 1

binder_runFunction · 0.85

Tested by

no test coverage detected