Does every artist not learn by first copying/stealing from those that inspired them in the first place? How is it different for an AI if we ignore the speed and scale for a moment? I’m not saying they should quit whining, I truly understand the frustration (being a developer watching ChatGPT do/copy/steal my “art” too). Perhaps Kasparov’s idea of working together with AI should be adopted in the art world too?
I think you’re on to something. Just reread this article: https://blog.gopheracademy.com/advent-2018/interfaces-and-re...
And there’s definitely an overhead associated with the interface type due to run-time reflection.
I guess generics does away with this.
The way I understood it the “slowness” came from using interface{} in the queue implementation. With generics you get a performance boost from annihilating the run-time overhead. Yes?