Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Uint16VarP (0.08 sec)

  1. pkg/flag/flag.go

    	case *string:
    		fs.StringVarP(d, name, shorthand, *d, usage)
    	case *bool:
    		fs.BoolVarP(d, name, shorthand, *d, usage)
    	case *time.Duration:
    		fs.DurationVarP(d, name, shorthand, *d, usage)
    	case *uint16:
    		fs.Uint16VarP(d, name, shorthand, *d, usage)
    	}
    }
    
    // BindEnv behaves like Bind, but additionally allows an environment variable to override.
    // This will transform to name field: foo-bar becomes FOO_BAR.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top