Files
lo/docs/data/core-minby.md
T
Samuel Berthe fa095e4b4f fix(doc): fix go playground demo URL (#832)
* fix(doc): fix go playground demo URL

* fix(doc): add more go playground demo URL
2026-03-06 00:09:59 +01:00

809 B

name, slug, sourceRef, category, subCategory, playUrl, variantHelpers, similarHelpers, position, signatures
name slug sourceRef category subCategory playUrl variantHelpers similarHelpers position signatures
MinBy minby find.go#L329 core find https://go.dev/play/p/-B1PsrHVnfx
core#find#minby
core#find#min
core#find#minbyerr
core#find#minindex
core#find#minindexby
core#find#max
core#find#maxby
core#find#maxindex
core#find#maxindexby
core#math#sum
core#math#mean
core#math#product
core#math#mode
160
func MinBy[T any](collection []T, comparison func(a T, b T) bool) T

Searches the minimum value of a collection using the given comparison function. Returns the first minimal value; zero value when empty.

type Point struct{ X int }
min := lo.MinBy([]Point{{1}, {5}, {3}}, func(a, b Point) bool {
    return a.X < b.X
})
// {1}