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

PERFORMANCE: ICU4N.Impl.RuleCharacterIterator: Fixed bottleneck when calling Lookahead() method #52

Merged
merged 4 commits into from
Nov 16, 2023

Conversation

NightOwl888
Copy link
Owner

The Substring() method in .NET performs horribly compared to Java. So, the Lookahead() method was modified to return ReadOnlySpan<char> so it can be sliced without allocating substrings.

On .NET Framework 4.0, we work around this by passing in the buffer instead of calling Lookahead().

…ethod to return ReadOnlySpan<char> instead of string to remove Substring() bottleneck
…() where ReadOnlySpan<T> is not supported by passing in the underlying buffer and recalculating the offset
…tead of the heap and to use the built-in precision specifier to pad the string
@NightOwl888 NightOwl888 merged commit 4d31768 into main Nov 16, 2023
1 check passed
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.

1 participant