func github.com/tmthrgd/go-hex.DecodedLen

4 uses

	github.com/tmthrgd/go-hex (current package)
		hex.go#L38: func DecodedLen(n int) int {
		hex.go#L79: 	dst := make([]byte, DecodedLen(len(src)))

	github.com/go-pg/pg/v10/types
		scan.go#L88: 	b := make([]byte, hex.DecodedLen(n-2))
		scan.go#L110: 	if len(b) != hex.DecodedLen(len(tmp)) {