mirror of
https://github.com/kernelstub/Ferrum
synced 2026-06-21 13:55:09 +00:00
9 lines
138 B
Go
9 lines
138 B
Go
package internal
|
|
|
|
func Limit[T any](items []T, max int) []T {
|
|
if max <= 0 || len(items) <= max {
|
|
return items
|
|
}
|
|
return items[:max]
|
|
}
|