core-async

fiddlerwoaroof 2020-03-20T18:10:19.260Z

Is there a "right" way to implement a custom buffer for a chan?

fiddlerwoaroof 2020-03-20T18:10:43.260500Z

I'm a bit wary of relying on a namespace with impl in its name, but maybe that's what I need to do?

alexmiller 2020-03-20T18:10:51.260700Z

that's what it's for

alexmiller 2020-03-20T18:11:14.261200Z

if you're making buffers, you're impl'ing

fiddlerwoaroof 2020-03-20T18:11:33.261700Z

Ok, I guess I was thinking of that as an implementation detail that I shouldn't depend on

alexmiller 2020-03-20T18:13:27.261900Z

you can rely on the protocols

fiddlerwoaroof 2020-03-20T18:13:39.262100Z

Ok, thanks