shithub: xui

ref: 0c44bd66e976d09c7aad8c6081d8b590832cea46
dir: /space/offset/offset.go/

View raw version
package offset

type Opts int

const (
	Auto = 1 << (iota+1)
	Unset
)

type Of struct {
	Val int
	Opts
}