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

Change isEqual logic across the common core #273

Open
antrix1989 opened this issue Nov 1, 2018 · 0 comments
Open

Change isEqual logic across the common core #273

antrix1989 opened this issue Nov 1, 2018 · 0 comments

Comments

@antrix1989
Copy link
Contributor

Currently we compare items like this:
result &= (!l && !r) || [l isEqualToString:r];

Change it to something like this:
result &= (l == r) || [l isEqualToString:r];

It will improve performance in the case when "l" and "r" are equal pointers.

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

No branches or pull requests

1 participant