| 6 | namespace data { |
| 7 | namespace op { |
| 8 | Shape::Shape(const std::string& ikey, int dim, const std::string& okey) |
| 9 | : ikey_(ikey), dim_(dim), okey_(okey), fullShape_(false) {} |
| 10 | Shape::Shape(const std::string& ikey, const std::string& okey) |
| 11 | : ikey_(ikey), okey_(okey), fullShape_(true) {} |
| 12 | Sample Shape::apply(const Sample& sample) const { |
nothing calls this directly
no outgoing calls
no test coverage detected