aboutsummaryrefslogtreecommitdiff
path: root/object/id/algorithm_hexlen.go
blob: 2b7fa0fac05cfc097128797d457bae58074c85d4 (about) (plain) (blame)
1
2
3
4
5
6
package objectid

// HexLen returns the encoded hexadecimal length.
func (algo Algorithm) HexLen() int {
	return algo.Size() * 2
}