Let's say we want to use ReaderT [(a,b)] over the Maybe monad, and then we want to do a lookup in the list.
Now an easy, and not too uncommon way to this is:
first possibility
find a = ReaderT (lookup a)
However it does seem like this asserts some non-trivial thing about how the ReaderT transformer works. Looking at the source code for Control.Monad.Reader it's clear that this works just fine. But I haven't read any documentation supporting this. However we could also write find like this:
second possibility
find a = do y <- ask
lift (lookup a y)
Similar ideas hold for wrapping MaybeT, StateT, State and Reader. Usually I write something like the first example, but most of the time it is really obvious how to write it like the second example, and you might even say it's more readable. So my question is: should code like the first example be considered bad?
find a = lift . lookup a =<< ask, which is as clear (IMHO) as the second option, but is shorter. – Antal S-Z Nov 30 '10 at 19:35newtype State s a = State {runState :: s -> (a, s)}(version 1.1.1) anymore, but rathertype State s = StateT s Identity(version 2.0.0). I don't see anything wrong in changing the api like that, and really anything could have changed so to break any well written code, planning ahead for compatability like that seems stupid, but I do think that constructors are more likely to change thanask. Almost pointless but still valid =D. – HaskellElephant Dec 4 '10 at 13:39RULESpragmas to turn code like above into the nicer way. – FUZxxl Dec 4 '10 at 13:45