| 7 | namespace data { |
| 8 | namespace op { |
| 9 | RemoveValue::RemoveValue( |
| 10 | const std::string& key, |
| 11 | const std::string& size_key, |
| 12 | int dim, |
| 13 | double value, |
| 14 | double pad) |
| 15 | : key_(key), size_key_(size_key), dim_(dim), value_(value), pad_(pad) {} |
| 16 | |
| 17 | Sample RemoveValue::apply(const Sample& sample) const { |
| 18 | auto array = sample::check_key(sample, key_, ArrayType::Any); |
nothing calls this directly
no outgoing calls
no test coverage detected