6 ms·
Someone correct me if I'm wrong, but I think that's true only if you use methods and not operators, because Go doesn't support operator overloading.
by minamea 13y ago
Someone correct me if I'm wrong, but I think that's true only if you use methods and not operators, because Go doesn't support operator overloading.
- 4ad 13y agoThat's correct, which means stonemetal's comment is true only for non-math code, but 99% of the code out there is not math.
- stonemetal 13y agoThe other place you really feel the lack of generics is in the collections. They are built around the empty interface so that they can hold any type. Then you have to cast back to what you want. Exactly like Java pre generics. ugh.