If isConstant(), returns value of the constant. If !isConstant(), return std::numeric_limits ::min().
| 252 | //! If isConstant(), returns value of the constant. |
| 253 | //! If !isConstant(), return std::numeric_limits<int32_t>::min(). |
| 254 | int32_t getConstantValue() const noexcept |
| 255 | { |
| 256 | return mImpl->getConstantValue(); |
| 257 | } |
| 258 | |
| 259 | protected: |
| 260 | apiv::VDimensionExpr* mImpl; |