- Array
- Usage
- array.Filter
- array.Find
- array.Map
- array.FlatMap
- array.Reduce
- array.Any
- array.Some
- array.Every
- array.Sum
- array.Max
- array.Min
- array.Product
- array.Reverse
- array.Shuffle
- array.Unique
- array.Union
- array.Fill
- array.Join
- array.Pop
- array.Push
- array.Shift
- array.Sort
- array.GroupBy
- array.GroupSumBy
- array.GroupSumByWhere
- array.GroupCountBy
- array.GroupReduceBy
- array.GroupStatsBy
- array.DistinctBy
- array.IndexBy
- array.Partition
- array.SortBy
- array.Take, array.Skip, array.Chunk
- chaining functions
- Usage
Filter a array , with a function that return a boolean.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Filter(data, func(i int) bool {
return i%2 == 0
})
fmt.Println(result) // [2 4 6 8 10]
Find a element in the array , with a function that return a boolean.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Find(data, func(i int) bool {
return i%2 == 0
})
fmt.Println(result) // 2Map a array , with a function that return a value.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Map(data, func(i int) int {
return i * 2
})
fmt.Println(result) // [2 4 6 8 10 12 14 16 18 20]FlatMap a array , with a function that return a slice.
a := []int{1, 2, 3, 4, 5}
b := array.FlatMap(a, func(x int) []int { return []int{x, x * 2} })
fmt.Println(b) // [1 2 2 4 3 6 4 8 5 10]Reduce a array , with a function that return a value.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Reduce(data, func(i, j int) int {
return i + j
})
fmt.Println(result) // 55Check if any element in the array match the condition.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Any(data, func(i int) bool {
return i%2 == 0
})
fmt.Println(result) // trueCheck if some element in the array match the condition.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Some(data, func(i int) bool {
return i%2 == 0
})
fmt.Println(result) // trueCheck if every element in the array match the condition.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Every(data, func(i int) bool {
return i%2 == 0
})
fmt.Println(result) // falseSum all elements in the array.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Sum(data)
fmt.Println(result) // 55Get the max element in the array.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Max(data)
fmt.Println(result) // 10Get the min element in the array.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Min(data)
fmt.Println(result) // 1Get the product of all elements in the array.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Product(data)
fmt.Println(result) // 3628800Reverse te order of the array.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Reverse(data)
fmt.Println(result) // [10 9 8 7 6 5 4 3 2 1]Shuffle the array.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Shuffle(data)
fmt.Println(result) // [10 9 8 7 6 5 4 3 2 1]Get unique elements in the array.
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
// filter
result := array.Unique(data)
fmt.Println(result) // [1 2 3 4 5 6 7 8 9 10]Get union of two arrays.
a := []int{1, 2, 3, 4, 5}
b := []int{6, 7, 8, 9, 10}
// filter
result := array.Union(a, b)
fmt.Println(result) // [1 2 3 4 5 6 7 8 9 10]Fill the array with a value.
a := []int{1, 2, 3, 4, 5}
b := array.Fill(a, 0, len(a), 0)
fmt.Println(b) // [0 0 0 0 0]Join the array with a separator.
a := []int{1, 2, 3, 4, 5}
b := array.Join(a, "-")
fmt.Println(b) // 1-2-3-4-5Pop the last element of the array, and return the removed element and the new array.
a := []int{1, 2, 3, 4, 5}
b, c := array.Pop(a)
fmt.Println(b) // 5
fmt.Println(c) // [1 2 3 4]Push an element to the array, and return the new array.
a := []int{1, 2, 3, 4, 5}
b := array.Push(a, 6)
fmt.Println(b) // [1 2 3 4 5 6]Shift the first element of the array, and return the removed element and the new array.
a := []int{1, 2, 3, 4, 5}
b, c := array.Shift(a)
fmt.Println(b) // 1
fmt.Println(c) // [2 3 4 5]Sort the array using the function.
a := []int{3, 2, 1, 5, 4}
b := array.Sort(a, func(i, j int) bool { return a[i] < a[j] })
fmt.Println(b) // [1 2 3 4 5]type Itens struct {
Name string
Price float64
Description string
Qty int
}
itens := []Itens{
{"Item 1", 10.0, "Description 1", 1},
{"Item 2", 20.0, "Description 2", 2},
{"Item 3", 30.0, "Description 3", 3},
{"Item 4", 40.0, "Description 4", 10},
{"Item 4", 40.0, "Description 4", 15},
{"Item 4", 40.0, "Description 4", 25},
}
grouped := array.GroupBy(itens, func(item Itens) string {
return fmt.Sprintf("%s - %v", item.Name, item.Price)
})
fmt.Println(len(grouped)) // 4
Group items by a key and sum a numeric value for each group.
type Itens struct {
Name string
Price float64
Description string
Qty int
}
itens := []Itens{
{"Item 1", 10.0, "Description 1", 1},
{"Item 2", 20.0, "Description 2", 2},
{"Item 3", 30.0, "Description 3", 3},
{"Item 4", 40.0, "Description 4", 10},
{"Item 4", 40.0, "Description 4", 15},
{"Item 4", 40.0, "Description 4", 25},
}
priceByName := array.GroupSumBy(itens,
func(item Itens) string { return item.Name },
func(item Itens) float64 { return item.Price },
)
qtyByName := array.GroupSumBy(itens,
func(item Itens) string { return item.Name },
func(item Itens) int { return item.Qty },
)
fmt.Println(priceByName["Item 4"]) // 120
fmt.Println(qtyByName["Item 4"]) // 50Filter, group and sum in one pass.
priceByName := array.GroupSumByWhere(itens,
func(item Itens) bool { return item.Qty > 3 },
func(item Itens) string { return item.Name },
func(item Itens) float64 { return item.Price },
)
fmt.Println(priceByName["Item 4"]) // 120Count rows by a key.
countByName := array.GroupCountBy(itens, func(item Itens) string {
return item.Name
})
fmt.Println(countByName["Item 4"]) // 3Build custom summaries by group.
type Summary struct {
TotalPrice float64
TotalQty int
}
summaryByName := array.GroupReduceBy(itens,
func(item Itens) string {
return item.Name
},
func(acc Summary, item Itens) Summary {
acc.TotalPrice += item.Price
acc.TotalQty += item.Qty
return acc
},
)
fmt.Println(summaryByName["Item 4"]) // {120 50}Calculate count, sum, min, max and average by group.
statsByName := array.GroupStatsBy(itens,
func(item Itens) string { return item.Name },
func(item Itens) float64 { return item.Price },
)
fmt.Println(statsByName["Item 4"].Count) // 3
fmt.Println(statsByName["Item 4"].Sum) // 120
fmt.Println(statsByName["Item 4"].Avg) // 40Keep the first row for each key.
uniqueByName := array.DistinctBy(itens, func(item Itens) string {
return item.Name
})
fmt.Println(len(uniqueByName)) // 4Create a map by key. If a key repeats, the last row wins.
itemByName := array.IndexBy(itens, func(item Itens) string {
return item.Name
})
fmt.Println(itemByName["Item 4"].Qty) // 25Split rows into matched and unmatched slices.
highQty, lowQty := array.Partition(itens, func(item Itens) bool {
return item.Qty > 3
})
fmt.Println(len(highQty)) // 3
fmt.Println(len(lowQty)) // 3Sort rows by a selected field without mutating the original slice.
byQty := array.SortBy(itens, func(item Itens) int {
return item.Qty
})
fmt.Println(byQty[0].Qty) // 1Use these helpers for pagination and batch processing.
firstPage := array.Take(itens, 2)
nextRows := array.Skip(itens, 2)
batches := array.Chunk(itens, 2)
fmt.Println(len(firstPage)) // 2
fmt.Println(len(nextRows)) // 4
fmt.Println(len(batches)) // 3You can chain the functions together.
data := array.Array[int]{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
a := data.
Filter(func(i int) bool {
return i%2 == 0
}).
Map(func(i int) int {
return i * 2
})
fmt.Println(a) // [4 8 12 16 20]You can also group and sum values after filtering.
type Itens struct {
Name string
Price float64
Description string
Qty int
}
data := array.Array[Itens]{
{"Item 1", 10.0, "Description 1", 1},
{"Item 2", 20.0, "Description 2", 2},
{"Item 3", 30.0, "Description 3", 3},
{"Item 4", 40.0, "Description 4", 10},
{"Item 4", 40.0, "Description 4", 15},
{"Item 4", 40.0, "Description 4", 25},
}
priceByName := data.
Filter(func(item Itens) bool {
return item.Qty > 3
}).
GroupSumBy(
func(item Itens) string { return item.Name },
func(item Itens) float64 { return item.Price },
)
fmt.Println(priceByName["Item 4"]) // 120Some helpers are also available in chain form.
countByName := data.GroupCountBy(func(item Itens) string {
return item.Name
})
statsByName := data.GroupStatsBy(
func(item Itens) string { return item.Name },
func(item Itens) float64 { return item.Price },
)
uniqueByName := data.DistinctBy(func(item Itens) string {
return item.Name
})
highQty, lowQty := data.Partition(func(item Itens) bool {
return item.Qty > 3
})
page := data.
SortByFloat64(func(item Itens) float64 { return item.Price }).
Skip(10).
Take(10)