aboutsummaryrefslogtreecommitdiff
path: root/pkg/list
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/list')
-rw-r--r--pkg/list/list.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/list/list.go b/pkg/list/list.go
index 3aa9d65..b6b6b89 100644
--- a/pkg/list/list.go
+++ b/pkg/list/list.go
@@ -13,15 +13,15 @@ type Pair[T, U any] struct {
Right U
}
-func Chunck[T any](slice []T, size int) [][]T {
+func Distribuite[T any](slice []T, size int) [][]T {
chuncks := make([][]T, size)
for i := 0; i < len(slice); i += size {
for x := 0; x < size; x++ {
end := i + x
- if end > len(slice) {
- break
+ if end >= len(slice) {
+ return chuncks
}
chuncks[x] = append(chuncks[x], slice[end])