Re: [go-nuts] Generics: More on parens

2020-06-17 Thread Aaron Cannon
ion is doing if you squint a bit. :) Anyway, just my $0.02. Thanks again for all the hard work on this. Aaron On 6/16/20, Ian Lance Taylor wrote: > On Tue, Jun 16, 2020 at 8:31 PM Aaron Cannon > wrote: >> >> I, like many others, am not fond of all the parenthesis, particularly

[go-nuts] Generics: More on parens

2020-06-16 Thread Aaron Cannon
I, like many others, am not fond of all the parenthesis, particularly at call sites. I think at definition sites, it's not so bad. It seems like the only objection to < and > are the complexity it adds for parsing. It also seems like the only place it adds ambiguity is at call or enstantiation s

Re: [go-nuts] dynamic frequency ticker

2016-08-30 Thread Aaron Cannon
How about creating a custom ticker that uses time.Sleep. There might be some hidden caveats when using time.Sleep verses a real ticker that I am unaware of, but it might meet your needs. You could then add a custom method, or inbound channel, which you could use to tweak its intervals on the fly.