| 9 | namespace op { |
| 10 | |
| 11 | KeyTransformOp::KeyTransformOp(const std::string& ikey, const std::string& okey) |
| 12 | : ikey_(ikey), okey_(okey) {}; |
| 13 | |
| 14 | Sample KeyTransformOp::apply(const Sample& sample) const { |
| 15 | auto src = sample::check_key(sample, ikey_, ArrayType::Any); |
nothing calls this directly
no outgoing calls
no test coverage detected