| 277 | const Scalar* scalar = NULLPTR; |
| 278 | |
| 279 | ExecValue(const Scalar* scalar) // NOLINT implicit conversion |
| 280 | : scalar(scalar) {} |
| 281 | |
| 282 | ExecValue(ArraySpan array) // NOLINT implicit conversion |
| 283 | : array(std::move(array)) {} |
nothing calls this directly
no test coverage detected