Collapse numeric flag types to be like strconv
#1759
Labels
area/v3
relates to / is being considered for v3
Milestone
strconv
#1759
The
strconv
API withParse.*
functions omits the bit size and always returns the 64-bit type. Doing the same for the relevant flag types would reduce the library surface area and testing code significantly (imho)Int64Flag
intoIntFlag
withint64
destination/return type #1763Int64SliceFlag
intoIntSliceFlag
with[]int64
destination/return type #1764Uint64Flag
intoUintFlag
withuint64
destination/return type #1766Uint64SliceFlag
intoUintSliceFlag
with[]uint64
destination/return type #1767Float64Flag
toFloatFlag
retainingfloat64
destination/return type #1771Float64SliceFlag
toFloatSliceFlag
retaining[]float64
destination/return type #1772The text was updated successfully, but these errors were encountered: