Codebase list golang-github-anacrolix-missinggo / debian/2.1.0-3 limitlen.go
debian/2.1.0-3

Tree @debian/2.1.0-3 (Download .tar.gz)

limitlen.go @debian/2.1.0-3raw · history · blame

1
2
3
4
5
6
7
package missinggo

// Sets an upper bound on the len of b. max can be any type that will cast to
// int64.
func LimitLen(b []byte, max ...interface{}) []byte {
	return b[:MinInt(len(b), max...)]
}