github.com/m4gshm/gollections@v0.0.13-0.20240331203319-a34a86e58a24/slice/last/api.go (about) 1 // Package last provides helpers for retrieving the last element of a slice 2 package last 3 4 import ( 5 "github.com/m4gshm/gollections/slice" 6 ) 7 8 // Of an alias of the slice.Last 9 func Of[TS ~[]T, T any](elements TS, by func(T) bool) (T, bool) { 10 return slice.Last(elements, by) 11 }