| 1139 | } |
| 1140 | |
| 1141 | ABSL_MUST_USE_RESULT inline std::unique_ptr<Expr> |
| 1142 | SelectExpr::release_operand() { |
| 1143 | return release(operand_); |
| 1144 | } |
| 1145 | |
| 1146 | inline const Expr& SelectExpr::operand() const ABSL_ATTRIBUTE_LIFETIME_BOUND { |
| 1147 | return has_operand() ? *operand_ : Expr::default_instance(); |