Skip to content

Latest commit

 

History

History

GoLab 2022

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Generating Generators

Presented: 2022-10-03

Abstract

Everyone wants Generators in go. To be able to yield a value from a function and then keep it running. Some people turn to goroutines and channels, but that comes with significant overhead.

In this talk, we'll use static analysis & code generation to roll our own generators.

Content