Re: [go-nuts] Is iota increment behavior implemented here?

2017-10-15 Thread m
Great, thanks! On Sunday, October 15, 2017 at 11:09:08 PM UTC+3, rog wrote: > > Yes, that looks about right (the actual count increment is done on line > 316). > > On 15 October 2017 at 14:52, wrote: > > Hi, > > > > I'm writing an article about iota and I've found that its

Re: [go-nuts] Is iota increment behavior implemented here?

2017-10-15 Thread roger peppe
Yes, that looks about right (the actual count increment is done on line 316). On 15 October 2017 at 14:52, wrote: > Hi, > > I'm writing an article about iota and I've found that its counting behavior > is implemented in the below source code? Am I right, if not, where it is? >

Re: [go-nuts] Is iota increment behavior implemented here?

2017-10-15 Thread Jan Mercl
On Sun, Oct 15, 2017 at 8:59 PM wrote: > I'm writing an article about iota and I've found that its counting behavior is implemented in the below source code? Am I right, if not, where it is? Can you help me? > >

[go-nuts] Is iota increment behavior implemented here?

2017-10-15 Thread m
Hi, I'm writing an article about iota and I've found that its counting behavior is implemented in the below source code? Am I right, if not, where it is? Can you help me? https://github.com/golang/go/blob/90d71fe99e21b68e292327c966946f1706d66514/src/cmd/compile/internal/gc/noder.go#L263