shithub: furgit

ref: cf02f2958c191bea02126faf8daf72a7aae76bd9
dir: /internal/commitquery/bits.go/

View raw version
package commitquery

type markBits uint8

const (
	markLeft markBits = 1 << iota
	markRight
	markStale
	markResult
)

const (
	allMarks = markLeft | markRight | markStale | markResult
)