Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/data/core-isuniq.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ slug: isuniq
sourceRef: slice.go#L290
category: core
subCategory: slice
playUrl:
variantHelpers:
- core#slice#isuniq
similarHelpers:
- core#slice#isuniqby
- core#slice#uniq
position: 120
- core#slice#finduniques
- core#find#findduplicates
position: 112
signatures:
- "func IsUniq[T comparable, Slice ~[]T](collection Slice) bool"
---
Expand All @@ -23,5 +26,3 @@ lo.IsUniq([]int{1, 2, 3})
lo.IsUniq([]int{1, 2, 1})
// false
```


7 changes: 4 additions & 3 deletions docs/data/core-isuniqby.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ slug: isuniqby
sourceRef: slice.go#L307
category: core
subCategory: slice
playUrl:
variantHelpers:
- core#slice#isuniqby
similarHelpers:
- core#slice#isuniq
- core#slice#uniqby
position: 130
- core#slice#finduniques
- core#find#findduplicates
position: 113
signatures:
- "func IsUniqBy[T any, U comparable, Slice ~[]T](collection Slice, iteratee func(item T) U) bool"
---
Expand All @@ -32,5 +35,3 @@ lo.IsUniqBy([]User{{ID: 1}, {ID: 2}, {ID: 1}}, func(u User) int {
})
// false
```


1 change: 1 addition & 0 deletions docs/data/core-uniq.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ variantHelpers:
similarHelpers:
- core#slice#uniqby
- core#slice#isuniq
- core#slice#isuniqby
- core#slice#uniqmap
- core#slice#uniqkeys
- core#slice#uniqvalues
Expand Down
1 change: 1 addition & 0 deletions docs/data/core-uniqby.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ variantHelpers:
similarHelpers:
- core#slice#uniqbyerr
- core#slice#uniq
- core#slice#isuniq
- core#slice#isuniqby
- core#slice#uniqmap
- core#slice#partitionby
Expand Down
1 change: 1 addition & 0 deletions docs/data/core-uniqbyerr.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ similarHelpers:
- core#slice#uniqby
- core#slice#uniq
- core#slice#isuniq
- core#slice#isuniqby
- core#slice#uniqmap
- core#slice#partitionby
position: 111
Expand Down
1 change: 1 addition & 0 deletions docs/data/core-uniqmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ similarHelpers:
- core#slice#uniq
- core#slice#uniqby
- core#slice#isuniq
- core#slice#isuniqby
- core#slice#map
- core#slice#filtermap
position: 20
Expand Down
Loading