MCPcopy Create free account
hub / github.com/BowenFu/matchit.cpp / invoke_

Function invoke_

develop/matchit/patterns.h:190–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188 // as constexpr
189 template <class F, class... Args>
190 constexpr std::invoke_result_t<F, Args...>
191 invoke_(F &&f,
192 Args &&...args) noexcept(std::is_nothrow_invocable_v<F, Args...>)
193 {
194 return std::apply(std::forward<F>(f),
195 std::forward_as_tuple(std::forward<Args>(args)...));
196 }
197
198 template <class T>
199 struct decayArray

Callers 3

matchPatternImplMethod · 0.85
matchit.hFile · 0.85
matchPatternImplMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected