| 21 | } |
| 22 | |
| 23 | KeyTransform::KeyTransform( |
| 24 | const std::string& ikey, |
| 25 | std::function<std::shared_ptr<Array>(const std::shared_ptr<const Array>&)> |
| 26 | op, |
| 27 | const std::string& okey) |
| 28 | : KeyTransformOp(ikey, okey), op_(op) {}; |
| 29 | |
| 30 | std::shared_ptr<Array> KeyTransform::apply_key( |
| 31 | const std::shared_ptr<const Array>& x) const { |
nothing calls this directly
no outgoing calls
no test coverage detected