-
-
Notifications
You must be signed in to change notification settings - Fork 823
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
Keys+Values: accept multiple maps (vaargs) - Adding UniqKeys+UniqValues #503
Conversation
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.
Coding is not only about thinking how to code the things you need to add for this feature, but to think about all the use cases your additional features could lead to.
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.
LGTM 👍 thanks
Let's wait for @samber feedback now
According to your changes, you're doing 2 operations: list keys and dedup. Can you argue on this behavior? IMO, some developers would only need to list keys, eg: Others might want to list keys with deduplication, but it could be done with 2 methods:
Also, I'm thinking about a very similar helper: So to push this work forward, I would suggest the following:
Any ideas on the matter? |
@samber seems like a fair callout (I was also thinking along the same lines) and also a good suggestion. I will make the 4 changes you have asked and will ask you to review them. Thank you for your suggestion. |
Sure. I'm also curious about other developer's opinions on this. |
I'm fine with the changes @samber suggest I just want to make sure the code will be benchmarked against slices.Compact when using in-house dedup once you will get the keys or values |
@samber @ccoVeille added the required changes. |
README.md
Outdated
@@ -1039,14 +1041,39 @@ result = lo.Splice([]string{"a", "b"}, 42, "1", "2") | |||
### Keys | |||
|
|||
Creates an array of the map keys. | |||
<br /> | |||
(Note: The order of the keys is not guaranteed to be the same as the order returned by the map, |
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.
map.go
Outdated
if _, exists := seen[k]; !exists { | ||
seen[k] = struct{}{} | ||
result = append(result, k) |
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.
if _, exists := seen[k]; !exists { | |
seen[k] = struct{}{} | |
result = append(result, k) | |
_, exists := seen[k] | |
if exists { | |
continue | |
} | |
seen[k] = struct{}{} | |
result = append(result, k) |
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.
@ccoVeille why is this change much better ?? Not able to understand. Is using continue a better approach ??
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.
It's the logic of "leave early", it's for readability and maintainability.
First, here, it's simpler to read that when existing we skip, than reading than when no existing we have to do something.
The leave early concept is there to avoid big if branch.
Also, imagine you have an new condition in this loop
With your current code, it would lead to put an if in the if
So the code would be something like this
for {
if condition1 {
something1
if condition2 {
something2
}
}
}
Here is the same code when applying leave early
for {
if !condition1 {
continue
}
something1
if !condition2 {
continue
}
something2
}
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.
waaaooo this seems a very good explanation. Thank you making it soo clear
@samber can you review the PR ?? all the review comments are resolved. |
Please check the tests. |
@samber Sorry my bad. There I was asserting the 3rd test and sorted the 1st test slice. |
That's why I'm using a pattern I barely seen here. func TestWhatever(t *testing.T) {
t.Run("one test", func(t *testing.T) {
// …
})
t.Run("another test", func(t *testing.T) {
// …
})
t.Run("and so on", func(t *testing.T) {
// …
})
} |
|
||
// UniqKeys creates an array of unique keys in the map. | ||
// Play: https://go.dev/play/p/TPKAb6ILdHk | ||
func UniqKeys[K comparable, V any](in ...map[K]V) []K { |
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.
may be more effective
seen := make(map[K]struct{})
for i := range in {
for k := range in[i] {
seen[k] = struct{}{}
}
}
result := make([]K, 0, len(seen))
for k := range seen {
result = append(result, k)
}
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.
similarly UniqValues
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.
with this version, the order is not guarantee
IMO, we would need a new helper (UniqKeysUnordered) ?
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/samber/lo](https://togithub.com/samber/lo) | `v1.46.0` -> `v1.47.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsamber%2flo/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsamber%2flo/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsamber%2flo/v1.46.0/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsamber%2flo/v1.46.0/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>samber/lo (github.com/samber/lo)</summary> ### [`v1.47.0`](https://togithub.com/samber/lo/releases/tag/v1.47.0) [Compare Source](https://togithub.com/samber/lo/compare/v1.46.0...v1.47.0) #### What's Changed - feat: Improve Substring by [@​liujundezhanghao](https://togithub.com/liujundezhanghao) in [https://github.com/samber/lo/pull/496](https://togithub.com/samber/lo/pull/496) - doc: Wrong method reference and output in readme by [@​ColeZia](https://togithub.com/ColeZia) in [https://github.com/samber/lo/pull/497](https://togithub.com/samber/lo/pull/497) - doc: Fix documentation for Duration3 by [@​gecko655](https://togithub.com/gecko655) in [https://github.com/samber/lo/pull/502](https://togithub.com/samber/lo/pull/502) - feat: add FromSlicePtr by [@​mash](https://togithub.com/mash) in [https://github.com/samber/lo/pull/217](https://togithub.com/samber/lo/pull/217) - feat: adding FromSlicePtrOr by [@​samber](https://togithub.com/samber) in [https://github.com/samber/lo/pull/506](https://togithub.com/samber/lo/pull/506) - feat: Keys+Values: accept multiple maps (vaargs) - Adding UniqKeys+UniqValues by [@​shivamrazorpay](https://togithub.com/shivamrazorpay) in [https://github.com/samber/lo/pull/503](https://togithub.com/samber/lo/pull/503) - doc: Update foreachwhile readme.md by [@​Sianao](https://togithub.com/Sianao) in [https://github.com/samber/lo/pull/508](https://togithub.com/samber/lo/pull/508) #### New Contributors - [@​liujundezhanghao](https://togithub.com/liujundezhanghao) made their first contribution in [https://github.com/samber/lo/pull/496](https://togithub.com/samber/lo/pull/496) - [@​ColeZia](https://togithub.com/ColeZia) made their first contribution in [https://github.com/samber/lo/pull/497](https://togithub.com/samber/lo/pull/497) - [@​gecko655](https://togithub.com/gecko655) made their first contribution in [https://github.com/samber/lo/pull/502](https://togithub.com/samber/lo/pull/502) - [@​mash](https://togithub.com/mash) made their first contribution in [https://github.com/samber/lo/pull/217](https://togithub.com/samber/lo/pull/217) - [@​shivamrazorpay](https://togithub.com/shivamrazorpay) made their first contribution in [https://github.com/samber/lo/pull/503](https://togithub.com/samber/lo/pull/503) **Full Changelog**: samber/lo@v1.46.0...v1.47.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/samber/lo](https://togithub.com/samber/lo) | `v1.46.0` -> `v1.47.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsamber%2flo/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsamber%2flo/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsamber%2flo/v1.46.0/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsamber%2flo/v1.46.0/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>samber/lo (github.com/samber/lo)</summary> ### [`v1.47.0`](https://togithub.com/samber/lo/releases/tag/v1.47.0) [Compare Source](https://togithub.com/samber/lo/compare/v1.46.0...v1.47.0) #### What's Changed - feat: Improve Substring by [@​liujundezhanghao](https://togithub.com/liujundezhanghao) in [https://github.com/samber/lo/pull/496](https://togithub.com/samber/lo/pull/496) - doc: Wrong method reference and output in readme by [@​ColeZia](https://togithub.com/ColeZia) in [https://github.com/samber/lo/pull/497](https://togithub.com/samber/lo/pull/497) - doc: Fix documentation for Duration3 by [@​gecko655](https://togithub.com/gecko655) in [https://github.com/samber/lo/pull/502](https://togithub.com/samber/lo/pull/502) - feat: add FromSlicePtr by [@​mash](https://togithub.com/mash) in [https://github.com/samber/lo/pull/217](https://togithub.com/samber/lo/pull/217) - feat: adding FromSlicePtrOr by [@​samber](https://togithub.com/samber) in [https://github.com/samber/lo/pull/506](https://togithub.com/samber/lo/pull/506) - feat: Keys+Values: accept multiple maps (vaargs) - Adding UniqKeys+UniqValues by [@​shivamrazorpay](https://togithub.com/shivamrazorpay) in [https://github.com/samber/lo/pull/503](https://togithub.com/samber/lo/pull/503) - doc: Update foreachwhile readme.md by [@​Sianao](https://togithub.com/Sianao) in [https://github.com/samber/lo/pull/508](https://togithub.com/samber/lo/pull/508) #### New Contributors - [@​liujundezhanghao](https://togithub.com/liujundezhanghao) made their first contribution in [https://github.com/samber/lo/pull/496](https://togithub.com/samber/lo/pull/496) - [@​ColeZia](https://togithub.com/ColeZia) made their first contribution in [https://github.com/samber/lo/pull/497](https://togithub.com/samber/lo/pull/497) - [@​gecko655](https://togithub.com/gecko655) made their first contribution in [https://github.com/samber/lo/pull/502](https://togithub.com/samber/lo/pull/502) - [@​mash](https://togithub.com/mash) made their first contribution in [https://github.com/samber/lo/pull/217](https://togithub.com/samber/lo/pull/217) - [@​shivamrazorpay](https://togithub.com/shivamrazorpay) made their first contribution in [https://github.com/samber/lo/pull/503](https://togithub.com/samber/lo/pull/503) **Full Changelog**: samber/lo@v1.46.0...v1.47.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 11pm every weekday,before 7am every weekday,every weekend" in timezone Europe/Brussels, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/kairos-io/provider-kairos). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/samber/lo](https://togithub.com/samber/lo) | `v1.46.0` -> `v1.47.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsamber%2flo/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsamber%2flo/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsamber%2flo/v1.46.0/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsamber%2flo/v1.46.0/v1.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>samber/lo (github.com/samber/lo)</summary> ### [`v1.47.0`](https://togithub.com/samber/lo/releases/tag/v1.47.0) [Compare Source](https://togithub.com/samber/lo/compare/v1.46.0...v1.47.0) #### What's Changed - feat: Improve Substring by [@&open-telemetry#8203;liujundezhanghao](https://togithub.com/liujundezhanghao) in [https://github.com/samber/lo/pull/496](https://togithub.com/samber/lo/pull/496) - doc: Wrong method reference and output in readme by [@&open-telemetry#8203;ColeZia](https://togithub.com/ColeZia) in [https://github.com/samber/lo/pull/497](https://togithub.com/samber/lo/pull/497) - doc: Fix documentation for Duration3 by [@&open-telemetry#8203;gecko655](https://togithub.com/gecko655) in [https://github.com/samber/lo/pull/502](https://togithub.com/samber/lo/pull/502) - feat: add FromSlicePtr by [@&open-telemetry#8203;mash](https://togithub.com/mash) in [https://github.com/samber/lo/pull/217](https://togithub.com/samber/lo/pull/217) - feat: adding FromSlicePtrOr by [@&open-telemetry#8203;samber](https://togithub.com/samber) in [https://github.com/samber/lo/pull/506](https://togithub.com/samber/lo/pull/506) - feat: Keys+Values: accept multiple maps (vaargs) - Adding UniqKeys+UniqValues by [@&open-telemetry#8203;shivamrazorpay](https://togithub.com/shivamrazorpay) in [https://github.com/samber/lo/pull/503](https://togithub.com/samber/lo/pull/503) - doc: Update foreachwhile readme.md by [@&open-telemetry#8203;Sianao](https://togithub.com/Sianao) in [https://github.com/samber/lo/pull/508](https://togithub.com/samber/lo/pull/508) #### New Contributors - [@&open-telemetry#8203;liujundezhanghao](https://togithub.com/liujundezhanghao) made their first contribution in [https://github.com/samber/lo/pull/496](https://togithub.com/samber/lo/pull/496) - [@&open-telemetry#8203;ColeZia](https://togithub.com/ColeZia) made their first contribution in [https://github.com/samber/lo/pull/497](https://togithub.com/samber/lo/pull/497) - [@&open-telemetry#8203;gecko655](https://togithub.com/gecko655) made their first contribution in [https://github.com/samber/lo/pull/502](https://togithub.com/samber/lo/pull/502) - [@&open-telemetry#8203;mash](https://togithub.com/mash) made their first contribution in [https://github.com/samber/lo/pull/217](https://togithub.com/samber/lo/pull/217) - [@&open-telemetry#8203;shivamrazorpay](https://togithub.com/shivamrazorpay) made their first contribution in [https://github.com/samber/lo/pull/503](https://togithub.com/samber/lo/pull/503) **Full Changelog**: samber/lo@v1.46.0...v1.47.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]>
Resolved Issue : #452
Added :