While looking through the transformers package, I found this monad transformer called IdentityT.
Although I understand how the Identity monad is used (e.g. State is just an alias for StateT Identity) and how monad transformers work in general, I have no idea how that relates to IdentityT.
Since it's not in the MTL, I'm guessing it was added in there just for completeness and has no practical use. Is that correct?