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

Function first

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

Source from the content-addressed store, hash-verified

933PYBIND11_NAMESPACE_BEGIN(constexpr_impl)
934/// Implementation details for constexpr functions
935constexpr int first(int i) { return i; }
936template <typename T, typename... Ts>
937constexpr int first(int i, T v, Ts... vs) {
938 return v ? i : first(i + 1, vs...);

Callers 1

constexpr_firstFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected