Returns true if `this` represents an actual value.
| 52 | |
| 53 | // Returns true if `this` represents an actual value. |
| 54 | bool has_value() const { return values_ != nullptr; } |
| 55 | |
| 56 | // REQUIRES: `this->has_value()` must be true. |
| 57 | const std::vector<Tensor>& get_values() const { |
no outgoing calls