Re: [go-nuts] multiple array declaration.. Is there a easier way ?

2019-05-03 Thread Louki Sumirniy
It looks like it should be an array T to me, then: var T = [5][256]uint32 On Thursday, 2 May 2019 03:45:07 UTC+2, kortschak wrote: > > var T0, T1, T2, T3, T5 [256]uint32 > > https://play.golang.org/p/6Cm4p_NyD8m > > On Wed, 2019-05-01 at 18:40 -0700, lgo...@gmail.com wrote: > > The following

Re: [go-nuts] multiple array declaration.. Is there a easier way ?

2019-05-01 Thread Burak Serdar
On Wed, May 1, 2019 at 7:40 PM wrote: > > The following statement seems very awkward, is there a cleaner way to write > it ? > > var T0= [256]uint32; var T1= [256]uint32; var T2= [256]uint32; var T3= > [256]uint32; var T5= [256]uint32 var T0, T1, T2 [256]uint32 > > > -- > You received this

Re: [go-nuts] multiple array declaration.. Is there a easier way ?

2019-05-01 Thread Dan Kortschak
var T0, T1, T2, T3, T5 [256]uint32 https://play.golang.org/p/6Cm4p_NyD8m On Wed, 2019-05-01 at 18:40 -0700, lgod...@gmail.com wrote: > The following statement seems very awkward, is there a cleaner way to > write  > it ? > > var T0= [256]uint32;  var T1= [256]uint32; var T2= [256]uint32; var >

[go-nuts] multiple array declaration.. Is there a easier way ?

2019-05-01 Thread lgodio2
The following statement seems very awkward, is there a cleaner way to write it ? var T0= [256]uint32; var T1= [256]uint32; var T2= [256]uint32; var T3= [256]uint32; var T5= [256]uint32 -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To