You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CompareOptions.NumericOrdering should be supported in Apple platforms. See #13979 for the approved API and discussion. PR #109861 adds the member CompareOptions.NumericOrdering but does not provide a conforming implementation for Apple platforms. The remaining work is to update the platform abstraction layer to support this.
PAL change would be to recognize the dotnet CompareOptions and convert it to the NSString.CompareOptions here
PR #109861 throws PlatformNotSupportedException when this option is used and skips tests that used this option, so when this is implemented, those guards can be removed.
The text was updated successfully, but these errors were encountered:
CompareOptions.NumericOrdering
should be supported in Apple platforms. See #13979 for the approved API and discussion. PR #109861 adds the memberCompareOptions.NumericOrdering
but does not provide a conforming implementation for Apple platforms. The remaining work is to update the platform abstraction layer to support this.PAL change would be to recognize the dotnet CompareOptions and convert it to the NSString.CompareOptions here
This is the numeric compare option documentation for reference: NSString.CompareOptions API
PR #109861 throws PlatformNotSupportedException when this option is used and skips tests that used this option, so when this is implemented, those guards can be removed.
The text was updated successfully, but these errors were encountered: