Open aviplot opened 10 months ago
If a struct has a rune type, the conversion is failed with strconv.ParseInt (Probably correct). Since there are no differences, a rune can be considered as an int. I have no suggestion on how to solve that... Code example:
struct
rune
strconv.ParseInt
type Node struct { NIndex Nindex `csv:"NINDEX"` NType rune `csv:"NTYPE"` NInfo Ninfo `csv:"NINFO"` }
and the input contains a letter, lets say a.
a
Thanks!
If a
struct
has arune
type, the conversion is failed withstrconv.ParseInt
(Probably correct). Since there are no differences, a rune can be considered as an int. I have no suggestion on how to solve that... Code example:and the input contains a letter, lets say
a
.Thanks!