| 525 | } |
| 526 | |
| 527 | absl::Status RegisterListSliceFunction(FunctionRegistry& registry) { |
| 528 | return TernaryFunctionAdapter<absl::StatusOr<Value>, const ListValue&, |
| 529 | int64_t, |
| 530 | int64_t>::RegisterMemberOverload("slice", |
| 531 | &ListSlice, |
| 532 | registry); |
| 533 | } |
| 534 | |
| 535 | absl::Status RegisterListSortFunction(FunctionRegistry& registry) { |
| 536 | CEL_RETURN_IF_ERROR( |
no outgoing calls
no test coverage detected