| 38 | |
| 39 | template <auto Idx, typename C> |
| 40 | constexpr auto input_name(avnd::field_reflection<Idx, C>) |
| 41 | { |
| 42 | if constexpr(avnd::has_name<C>) |
| 43 | return avnd::get_name<C>(); |
| 44 | else |
| 45 | return "input_" + std::to_string(Idx); |
| 46 | } |
| 47 | |
| 48 | template <auto Idx, typename C> |
| 49 | constexpr auto output_name(avnd::field_reflection<Idx, C>) |
no test coverage detected