microsoft-authentication-library-common-for-objc icon indicating copy to clipboard operation
microsoft-authentication-library-common-for-objc copied to clipboard

Change isEqual logic across the common core

Open antrix1989 opened this issue 6 years ago • 0 comments

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.

antrix1989 avatar Nov 01 '18 22:11 antrix1989