[go-nuts] Re: [ANN] roger, an app configuration library experiment

2017-10-09 Thread Ivan Fraixedes
Thanks for this library, I also found some of those missing features that you listed in the README. On Monday, 9 October 2017 00:56:32 UTC+2, Alex Buchanan wrote: > > My weekend project for that past couple weeks has been roger: > https://github.com/buchanae/roger > > This is another take on

Re: [go-nuts] Why not a mixture of value and pointer receiver?

2019-01-23 Thread Ivan Fraixedes
Perhaps There is a handy exception, though. When the value is addressable, the > language takes care of the common case of invoking a pointer method on a > value by inserting the address operator automatically. In our example, the > variable b is addressable, so we can call its Write method

Re: [go-nuts] [48]byte should be make to empty

2019-06-07 Thread ivan . fraixedes
Or even just declare the var without any value assignation because it's zero value is an array of zero byte value, which is 0. var array [48]byte On Thursday, 6 June 2019 17:38:14 UTC+2, Michel Levieux wrote: > > Hi, > > It is not quite clear what you are trying to do, but if I understand it

[go-nuts] Re: go: how to input two-dimensional string array form keyboard??

2019-06-11 Thread Ivan Fraixedes
Could you post your non-working peice of code? it should help to understand what's the problem. On Monday, 10 June 2019 07:19:02 UTC+2, shine sun wrote: > > Firstly, I try to input N and M from keyboard, creating a two-dimensional > string array (var nums [N][M]string). Then, for i := 0; i <