Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newFloat64Value (0.29 sec)

  1. src/flag/flag.go

    	f.Var(newFloat64Value(value, p), name, usage)
    }
    
    // Float64Var defines a float64 flag with specified name, default value, and usage string.
    // The argument p points to a float64 variable in which to store the value of the flag.
    func Float64Var(p *float64, name string, value float64, usage string) {
    	CommandLine.Var(newFloat64Value(value, p), name, usage)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top