| 222 | static CelValue CreateDuration(absl::Duration value); |
| 223 | |
| 224 | static CelValue CreateUncheckedDuration(absl::Duration value) { |
| 225 | return CelValue(value); |
| 226 | } |
| 227 | |
| 228 | static CelValue CreateTimestamp(absl::Time value) { return CelValue(value); } |
| 229 |