-
Notifications
You must be signed in to change notification settings - Fork 201
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
add generic sets to utils #243
Conversation
A couple thoughts:
|
Agreed, if we can have some form of conditional compilation and isolate the packages that require go1.18, that'd be nice. Otherwise, we could also branch into a
The thing is that yeah, |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /close |
@k8s-triage-robot: Closed this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
We let this age-out. When do we bring it back? |
/reopen
1.27 (so next release) |
@logicalhan: Reopened this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/lifecycle frozen |
@logicalhan: The In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/remove-lifecycle rotten |
/close |
@logicalhan: Closed this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
sets/set.go
Outdated
|
||
import "sort" | ||
|
||
type Ordered interface { |
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.
The apimachinery
implementation uses comparable
instead (which requires Go 1.20 to work properly).
The doc on comparable is ... tricky to digest. |
That’s putting it mildly! But I think it’s the right approach in this case (assuming a Go 1.20 bump is acceptable). |
I'm trying to digest why it's OK to runtime-panic on |
Like: https://go.dev/play/p/vBEo5hg2mnu It seems BETTER in 1.19 than 1.20 |
sets/set.go
Outdated
limitations under the License. | ||
*/ | ||
|
||
package sets |
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.
Since we're nitpicking, why not set
- set.Set[int]
or even set.S[int]
?
Or should this be containers.Set[int]
or something? stl.Set[int]
? :)
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.
I renamed the package to set
.
So basically my plan is twofold: (1) introduce sets using |
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.
nits
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!
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: logicalhan, thockin The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Is there an issue open for tracking that? Do you already have a prototype? |
Following kubernetes/utils#243 it's likely that the k8s.io/utils version will end up being the canonical one. Signed-off-by: Stephen Kitt <[email protected]>
Following kubernetes/utils#243 it's likely that the k8s.io/utils version will end up being the canonical one. Signed-off-by: Stephen Kitt <[email protected]>
Following kubernetes/utils#243 it's likely that the k8s.io/utils version will end up being the canonical one. Signed-off-by: Stephen Kitt <[email protected]>
What type of PR is this?
/kind cleanup
What this PR does / why we need it:
We have a sets utils in
pkg
in k8s/k8s. This refactors that implementation to use generics instead of code-generation and moves the library here.Release note: