|
|
|
|
|
by killbot5000
2464 days ago
|
|
The simplest example I can think of is: Map(slice, func) You can can implement this generically in Go using interface{} types and runtime type checking, but then you have runtime type checking failures. A java/c++-esque "generics" implementation would be able to type-check at compile time. |
|