Return pointer to IDimensionExp for given value.
| 283 | public: |
| 284 | //! Return pointer to IDimensionExp for given value. |
| 285 | IDimensionExpr const* constant(int32_t value) noexcept |
| 286 | { |
| 287 | return mImpl->constant(value); |
| 288 | } |
| 289 | |
| 290 | //! Return pointer to IDimensionExp that represents the given operation applied to first and second. |
| 291 | //! Returns nullptr if op is not a valid DimensionOperation. |
no outgoing calls