func right()

in qf.go [407:412]


func right(i *uint64, size uint64) {
	*i++
	if *i >= size {
		*i = 0
	}
}