shithub: xui

ref: e83fc0ac32af17baeae1a29e23de8c0decea7154
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
}