On Wed, 15 Jul 2020 12:26:15 -0700
Ian Lance Taylor <i...@golang.org> wrote:

> The suggested syntax, whether with parentheses or square brackets, has
> what I consider to be a very nice property: the definition and use
> syntaxes are very similar.  For the definition we write
> 
> func F[type T]() {}
> 
> For the use we write
> 
> F[int]()
> 
> The two aren't identical, but the syntax is parallel.

Maybe the "type" should be required in both? That feels annoying and
ugly, but it would eliminate any possible ambiguity about how to
interpret the name in the []:

        var F1 []func()
        F1[otherpkg.Y]()
        func F2[type T]() {}
        F2[otherpkg.Z]()

-s

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/20200715145841.7eb04b59%40seebsdell.

Reply via email to