flag.FlagSet.IntVar (method)

4 uses

	flag (current package)
		flag.go#L655: func (f *FlagSet) IntVar(p *int, name string, value int, usage string) {
		flag.go#L669: 	f.IntVar(p, name, value, usage)

	src.elv.sh/pkg/prog
		prog.go#L74: 	fs.IntVar(&f.Port, "port", defaultWebPort, "the port of the web backend")
		prog.go#L82: 	fs.IntVar(&DeprecationLevel, "deprecation-level", DeprecationLevel, "show warnings for all features deprecated as of version 0.X")