Return pointer to IDimensionExp that represents the given operation applied to first and second. Returns nullptr if op is not a valid DimensionOperation.
| 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. |
| 292 | IDimensionExpr const* operation( |
| 293 | DimensionOperation op, IDimensionExpr const& first, IDimensionExpr const& second) noexcept |
| 294 | { |
| 295 | return mImpl->operation(op, first, second); |
| 296 | } |
| 297 | |
| 298 | protected: |
| 299 | apiv::VExprBuilder* mImpl; |
no outgoing calls
no test coverage detected