shithub: xui

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