|
|
|
|
|
by tsimionescu
2373 days ago
|
|
That's not exactly true. All struct types in Go can not be nil. However, they also can't be abstracted over in any way, so they are a poor idea for an error type - you want an error interface, and all interface types in Go indeed are nil-able. |
|