blob: 93c0f61bdc44e494175d769a54db08e4c9c9ad0f (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package objectid
// PackHashID returns the Git pack/rev hash-id encoding for this algorithm.
//
// Unknown algorithms return 0.
func (algo Algorithm) PackHashID() uint32 {
return algo.info().packHashID
}
|