| 380 | } |
| 381 | |
| 382 | bool AssignInt64(const CelValue& cel_value) const { |
| 383 | int64_t value; |
| 384 | if (!cel_value.GetValue(&value)) { |
| 385 | return false; |
| 386 | } |
| 387 | static_cast<const Derived*>(this)->SetInt64(value); |
| 388 | return true; |
| 389 | } |
| 390 | |
| 391 | bool AssignUInt64(const CelValue& cel_value) const { |
| 392 | uint64_t value; |