MCPcopy Create free account
hub / github.com/pybind/pybind11 / last

Function last

include/pybind11/detail/common.h:941–941  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

939}
940
941constexpr int last(int /*i*/, int result) { return result; }
942template <typename T, typename... Ts>
943constexpr int last(int i, int result, T v, Ts... vs) {
944 return last(i + 1, v ? i : result, vs...);

Callers 1

constexpr_lastFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected