[go-nuts] Re: Generics and parentheses

2020-07-21 Thread faiface2202
I feel like you guys missed my suggestion earlier. I will repeat it because I think it can be good. What about a dot to separate type parameters in specialization? func zero() T { var x T return x } func main() { fmt.Println(zero.()) // . required here }

[go-nuts] Re: Generics and parentheses

2020-07-14 Thread faiface2202
One way to distinguish between type A[N] E and type A [N]E is to be more space-sensitive and, for example, disallow whitespace between a type name and the opening square bracket when it signifies type parameters. Dňa utorok, 14. júla 2020 23:56:01 UTC+2 gri napísal(a): > > We have received a var

[go-nuts] [Blog] Context should go away for Go 2

2017-08-07 Thread faiface2202
Hi everyone! I've written a blog post called 'Context should go away for Go 2': https://faiface.github.io/post/context-should-go-away-go2/ The post is about the cancelation problem in Go, how context package solves it, why context package is bad anyway, and that Go 2 should do something about

[go-nuts] Results of the 2016 Go User Survey?

2017-01-23 Thread faiface2202
Hi, what is the state of 2016 Go User Survey? Are the results ever gonna be available? Or are they already and I've just missed them? Thanks, Michal Štrba -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop

[go-nuts] Re: Suggestion: port golang.org/x/mobile/exp/audio/al to Windows

2016-11-20 Thread faiface2202
How to submit a change request? I'm posting to this group, because there is no issue tracker on the http://golang.org/x/mobile/exp/audio/al package. Dňa sobota, 29. októbra 2016 7:04:06 UTC+2 Daniel Theophanes napísal(-a): > > I would love to also see this happen. If you have time feel free to

[go-nuts] Suggestion: port golang.org/x/mobile/exp/audio/al to Windows

2016-10-27 Thread faiface2202
Hi there, recently I posted a question in this group asking why golang.org/x/mobile/exp/audio/al doesn't support Windows. I've got one answer, saying something like: "it belongs to golang.org/x/mobile, so that's why". However, *there is no single satisfying multiplatform audio library for Go*,

[go-nuts] Why golang.org/x/mobile/exp/audio/al OpenAL does not support Windows?

2016-10-14 Thread faiface2202
Hello everyone! Go doesn't have a very good multimedia support, which is quite unfortunate, cause it would be a great language for writing multimedia applications and games. It's already possible, but is not very easy. There is this library golang.org/x/mobile/exp/audio/al for audio, which is