@cadey It feels like both are variants on the same mechanism, though, and various sources are implying as such, but nobody seems to actually be finishing the thought
@cadey In the sense that async functions always return / yield control to "the event loop implementation", but generators return / yield control to whatever the call-site was?
@joepie91 bingo
@cadey Thanks, that confirms my general sense of it then, I think :)
@joepie91 They basically are yeah, but usually async functions only have one possible return point but generators can have infinite possible return points.