Coding 2026-02-25

By Max Woerner Chase

Okay, let's see if I can take some notes quickly. I'm working from the algebraic effects technical report, as well as the effect polymorphism and extended writeups of 1ML.

Both of these three papers have a mapping from higher-level types to lower-level types. The mapping I will end up with will draw a lot from 1ML, but will draw from alebraic effects, in that effects beyond the basics will have additional effects on the return types of functions. Basically, I think I need to figure out how to combine the two monads that the different papers are talking about, which is annoying in general, but hopefully doing it in a sort of specific context like this will make things not too bad.

Before anything else (and with not much after it, because I spaced out and it's super late), let's see if I can figure out what the signature of a map function looks like.

map : (a : type) ->p (b : type) ->p (m : effect) ->p ((a) ->m b) -> (list a) ->m (list b) Or something like that.

Now, here's what I know very offhand:

Anyway, I'll try to come up with an answer to those at a not-messed-up time of day, later, since it's way too late to do it now.

Good night.