Type aliases appear in the contracts draft design. Has anyone suggested
alias declarations for generic functions? This would simplify syntax for
callers...

package g

func G(type T)(i T) error { ... }

---

package main
import "g"

func Gi g.G(int) // declare alias

func f() {
   Gi(1)
}

-- 
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.
For more options, visit https://groups.google.com/d/optout.

Reply via email to