implement startsWithCodePoint

This commit is contained in:
Folkert 2021-05-02 19:26:08 +02:00
parent 8df810fe0c
commit c071cfba13
12 changed files with 105 additions and 17 deletions

View file

@ -69,6 +69,7 @@ comptime {
exportStrFn(str.countSegments, "count_segments");
exportStrFn(str.countGraphemeClusters, "count_grapheme_clusters");
exportStrFn(str.startsWith, "starts_with");
exportStrFn(str.startsWithCodePoint, "starts_with_code_point");
exportStrFn(str.endsWith, "ends_with");
exportStrFn(str.strConcatC, "concat");
exportStrFn(str.strJoinWithC, "joinWith");