|
|
|
|
|
by jorlow
4295 days ago
|
|
The problem (which the article touches on) is that you have to resort to interface{} to make things reusable since Go doesn't have generics. So you have to pick between using a library (which will handle edge cases better) or compile time type checking. |
|