print the value
| 691 | protected: |
| 692 | // print the value |
| 693 | virtual void PrintValue(std::ostream &os, DType value) const { // NOLINT(*) |
| 694 | os << value; |
| 695 | } |
| 696 | void PrintDefaultValueString(std::ostream &os) const override { // NOLINT(*) |
| 697 | PrintValue(os, default_value_); |
| 698 | } |
nothing calls this directly
no outgoing calls
no test coverage detected