-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Implement NSSet#description
#2037
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
Conversation
Because `NSSet#description` was not implemented.
@swift-ci test |
Foundation/NSSet.swift
Outdated
indent += " " | ||
} | ||
var result = indent + "{(\n" | ||
let cnt = count |
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.
Is cnt
needed here? It seems to just mirror the value held in count
?
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.
Thanks!!
I fixed it. 231c8be
For following review swiftlang#2037 (comment)
@swift-ci test |
1 similar comment
@swift-ci test |
@swift-ci test Linux platform |
Could you start test? 🙇 |
@swift-ci test |
1 similar comment
@swift-ci test |
Remove `String` using
Fixed it again |
@swift-ci Please test |
1 similar comment
@swift-ci Please test |
FYI, the test failures are not related to your changes, they look to be due to issues in one of the other repositories. |
@swift-ci test linux |
Thanks for your information! I got it. |
Is there any action I should to do? |
@swift-ci Please test Linux platform |
NSSet#description
NSSet#description
Thanks for working on it! |
Thanks a lot |
Because
NSSet#description
was not implemented.