| 8748 | class ValueArray { |
| 8749 | public: |
| 8750 | explicit ValueArray(Ts... v) : v_(FlatTupleConstructTag{}, std::move(v)...) {} |
| 8751 | |
| 8752 | template <typename T> |
| 8753 | operator ParamGenerator<T>() const { // NOLINT |
nothing calls this directly
no outgoing calls
no test coverage detected