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