Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

native implementation of std.splitLimitR #163

Merged
merged 2 commits into from
May 17, 2024

Conversation

tstenner
Copy link
Contributor

There are two branches with native implementations of stdlib functions, but none for std.splitLimirR yet.

The function needs either two passes over the string (one reverse scan for the nth separator, another to split it starting at this offset) or a temporary array with string slices. The implementation below uses the second, more readable approach.

Copy link
Owner

@CertainLach CertainLach left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@CertainLach CertainLach merged commit f319c35 into CertainLach:master May 17, 2024
4 checks passed
@tstenner tstenner deleted the feature/splitlimitr branch May 18, 2024 10:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants