-
Notifications
You must be signed in to change notification settings - Fork 10.4k
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
[stdlib] [SR-4005] Allow heterogenous comparisons in elementsEqual #8045
Conversation
@swift-ci Please smoke test |
% end | ||
) ${rethrows_}-> Bool | ||
where | ||
OtherSequence: Sequence, | ||
OtherSequence: Sequence${" {" if preds else ","} | ||
% if not preds: | ||
OtherSequence.${GElement} == ${GElement} { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nkcsgexi It is concerning that the change in the generic requirements was not caught by swift-api-digester.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, the diff tool is not comparing generic requirements now.
@swift-ci Please test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add some changes to test some comparisons of different element types using a closure? (for example, comparing ["0","1","2"]
to 0..<4
)
@airspeedswift I've written a couple comparing the string version of ints being converted. Is this appropriate? |
@swift-ci Please test |
1 similar comment
@swift-ci Please test |
@swift-ci Please test source compatibility |
Build failed |
@jrose-apple thanks for the review. The only error I could see in the linux build was
my best guess would be that its an issue with the linux instance rather than the pr, Should we just rerun the tests or did you have advice on how id go about fixing this? |
Ah, yeah, seems unlikely. Let's try again. (This still isn't a review, though. @airspeedswift needs to accept the new version.) @swift-ci Please test Linux platform |
@swift-ci please test and merge |
@swift-ci Please test source compatibility |
Oops, thanks @jrose. Tho it'd be pretty weird if this caused anything to fail. |
@swift-ci please clean test linux platform |
Build failed |
The compat suite failures are in AsyncNinja, which we think is due to Pavel's recent change. Not related to this commit. |
Hi @Cbieniak – sorry, looks like I just caused a conflict with another commit. Could you rebase and hopefully we can land this? Thanks! |
When a user is supplying a predicate to compare the type equivalence isn’t required
Compares a string of a number with an integer value by using the elementsEqualPredicate closure
@airspeedswift No worries at all mate. |
@swift-ci please test |
@swift-ci please smoke test compiler performance |
@swift-ci please test source compatibility |
Ah. Looks like one of the hardcoded tests that check completion needs tweaking. |
@swift-ci please test |
Build failed |
Build failed |
Looks like an issue with the complete_from_stdlib.swift. Ill fix it when I get a chance |
Thanks @Cbieniak! |
Should be all sorted now |
@swift-ci please test |
@swift-ci please test macOS platform |
When supplying a predicate to compare, type equivalence of the two sequences are not necessary
Resolves SR-4005.