| 1387 | |
| 1388 | template <typename Tuple> |
| 1389 | constexpr size_t findOooIdx() |
| 1390 | { |
| 1391 | return findOooIdxImpl<Tuple>( |
| 1392 | std::make_index_sequence< |
| 1393 | std::tuple_size_v<std::remove_reference_t<Tuple>>>{}); |
| 1394 | } |
| 1395 | |
| 1396 | static_assert(isOooOrBinderV<Ooo>); |
| 1397 | static_assert(isOooOrBinderV<OooBinder<int32_t>>); |
nothing calls this directly
no outgoing calls
no test coverage detected