| 554 | } |
| 555 | |
| 556 | FLStringResult FLKeyPath_ToString(FLKeyPath path) FLAPI { |
| 557 | return toSliceResult(alloc_slice(std::string(*path))); |
| 558 | } |
| 559 | |
| 560 | bool FLKeyPath_Equals(FLKeyPath path1, FLKeyPath path2) FLAPI { |
| 561 | return *path1 == *path2; |
no test coverage detected