|
|
On Fri, Jun 18, 2010 at 12:44 PM, Heinrich Apfelmus
<apfelmus@xxxxxxxxxxxxxxxx> wrote:
> Sebastian Fischer wrote:
>> Edward Kmett wrote:
>>> Sebastian Fischer wrote:
>>>> Heinrich Apfelmus wrote:
>>>> newtype CMaybe a = CMaybe (forall r. (a -> Maybe r) -> Maybe r)
>>> Yes, with this type `orElse` has the same type as `mplus`, which is
>>> very nice.
>>>
>>> This type is the same as "Codensity Maybe" using category-extras which
>>> is a 'bit bigger than Maybe'. (To see why, figure out how Codensity
>>> Reader is isomorphic to State!) This is the wiggle room you're using
>>> to get the distributive operator.
>>
>> I encounter the Codensity type constructor every now and then. I used it
>> to Reinvent Haskell Backtracking, learned about implementing a state
>> monad with a reader monad wrapped in Codensity when implementing ÂLazy
>> Nondeterministic Programming and Janis VoigtlÃnder also used it to
>> improve the asymptotics of free monads.
>>
>> I wonder whether for every monad `m` and `a :: Codensity m a`
>>
>> Â Â getCodensity a f Â= ÂgetCodensity a return >>= f
>>
>> Is this true? Why (not)?
>
> It's not true.
>
> Âa = Codensity $ \x -> Just 42
> Âf = return . (+1)
>
>  ÂgetCodensity a f      Â= Just 42
> Ââ getCodensity a return >>= f = Just 42 >>= f = Just 43
What definition are you using for Codensity? Under the definition I'm
familiar with, that definition of a is invalid.
newtype Codensity m a = Codensity { runCodensity :: forall b. (a -> m
b) -> m b }
Which is not to say that you can't come up with improper values of
Codensity. E.g.,
Codensity (\k -> k () >> k ())
\m -> Codensity (\k -> k () >>= \b -> m >> return b)
--
Dave Menendez <dave@xxxxxxxxxxxx>
<http://www.eyrie.org/~zednenem/>
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@xxxxxxxxxxx
http://www.haskell.org/mailman/listinfo/haskell-cafe
|
|