[go-nuts] compiler RFE

2020-06-17 Thread hardconnect . joe
I remember using mainframe FORTRAN compilers where the compiler would print out a page of symbol cross references. For each symbol or function there would listed the line where it was defined and then line numbers where it was used/referenced. Something similar would be useful for GO. Printing

[go-nuts] Can you have multiple go routines waiting on a socket?

2020-06-20 Thread hardconnect . joe
Can you have multiple go routines waiting to read from a socket, or are you limited to just one? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsu

Re: [go-nuts] Can you have multiple go routines waiting on a socket?

2020-06-21 Thread hardconnect . joe
> > Yes, the exact use case I'm thinking of is reading UDP datagrams. I just > want to read them as fast as possible then hand them off to other goroutines for further processing. I was just thinking I would get better speed/throughput if I had a couple of go routines listening, waiting to pi

[go-nuts] Bitstring package?

2020-06-29 Thread hardconnect . joe
I'm looking for a package that implements arbitrary length bit strings and supports set all, clear all, set and reading back of arbitrary bits and setting and clearing the next set or unset bit. I've seen a couple of packages that come close. Does anyone know of a package that meets all my need