| 562 | } |
| 563 | |
| 564 | bool FLKeyPath_GetElement(FLKeyPath path, size_t i, FLSlice *outKey, int32_t *outIndex) FLAPI { |
| 565 | if (i >= path->size()) |
| 566 | return false; |
| 567 | auto &element = (*path)[i]; |
| 568 | *outKey = element.keyStr(); |
| 569 | *outIndex = element.index(); |
| 570 | return true; |
| 571 | } |
| 572 | |
| 573 | |
| 574 | #pragma mark - ENCODER: |