| 117 | struct AdaptHelper { |
| 118 | template <typename T> |
| 119 | static absl::Status Apply(absl::Span<const Value> input, T& output) { |
| 120 | return AdaptHelperImpl<0, Args...>::template Apply<T>(input, output); |
| 121 | } |
| 122 | }; |
| 123 | |
| 124 | template <typename... Args> |
no outgoing calls
no test coverage detected