Restricting a monad to a type class - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T06:48:44Zhttp://stackoverflow.com/feeds/question/379546http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/379546/restricting-a-monad-to-a-type-class1Restricting a monad to a type classnamin2008-12-18T22:28:16Z2008-12-19T01:27:59Z
<p>In Haskell, is there a way to restrict a monad <code>M a</code> so that <code>a</code> satisfy a type class constraint?</p>
<p>I am translating the <a href="http://github.com/namin/spots/tree/master/probabilisticModeling/README.markdown" rel="nofollow">probabilistic modeling example</a> from <a href="http://github.com/namin/spots/tree/master/probabilisticModeling/probabilisticModeling.fsx" rel="nofollow">F#</a> to <a href="http://github.com/namin/spots/tree/6c5a3b78e8f5f559900bade7629fab0edcf225e8/probabilisticModeling/probabilisticModeling.hs" rel="nofollow">Haskell</a>. However, in Haskell, I omitted <code>support</code> because it would change <code>data Distribution a</code> to <code>data (Ord a) => Distribution a</code>. With this change, I get the following error:</p>
<pre><code>...probabilisticModeling.hs:42:13:
Could not deduce (Ord a) from the context ()
arising from a use of `always'
at ...probabilisticModeling.hs:42:13-18
Possible fix:
add (Ord a) to the context of the type signature for `return'
In the expression: always
In the definition of `return': return = always
In the instance declaration for `Monad Distribution'
</code></pre>
<p>Indeed, the type of <code>always</code>/<code>return</code> is: <code>(Ord a) => a -> Distribution a</code>. Is there a way I can have a monad <code>Distribution</code>, but force the constraint <code>(Ord a)</code> on this monad? I tried:</p>
<pre><code>instance Monad Distribution where
(>>=) = bind
return :: (Ord a) => a -> Distribution a = always
</code></pre>
<p>But I get the error:</p>
<pre><code>...probabilisticModeling2.hs:48:4:
Pattern bindings (except simple variables) not allowed in instance declarations
return :: (Ord a) => a -> Distribution a = always
Failed, modules loaded: none.
</code></pre>
<p>So it there a way to have a monad <code>M a</code>, but restrict the <code>a</code> with a constraint such as <code>Ord a</code>?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/379546/restricting-a-monad-to-a-type-class/379608#3796083Answer by Gregory Higley for Restricting a monad to a type classGregory Higley2008-12-18T22:53:42Z2008-12-18T22:53:42Z<p>My understanding of this is that you simply cannot, because a monad is meant to be generalized over all types, not some restricted subset of types such as <code>(Ord a)</code>.</p>
<p>Instead of restricting the monadic type <code>M a</code>, you can simply restrict functions which use that monadic type, e.g.,</p>
<pre>foo :: Ord a => Int -> M a</pre>
<p>In fact, it is preferable to keep types as general as possible and use type classes only to restrict functions.</p>
<p>etc.</p>
http://stackoverflow.com/questions/379546/restricting-a-monad-to-a-type-class/379844#3798441Answer by namin for Restricting a monad to a type classnamin2008-12-19T01:04:39Z2008-12-19T01:04:39Z<p>It appears that I ran into a well-known problem in Haskell. I <a href="http://delicious.com/adnamin/haskell+restricted+monads" rel="nofollow">found many workarounds</a> by <a href="http://www.google.ch/search?q=restricted+monads" rel="nofollow">googling for "restricted monads"</a>. <a href="http://hsenag.livejournal.com/11803.html" rel="nofollow">This solutions</a> seems to be the least disruptive. Still, for my purposes, it seems overkill. I think I'll keep the <code>Distribution</code> monad general, and simplify a support via a restricted function, as suggested by Revolucent.</p>
http://stackoverflow.com/questions/379546/restricting-a-monad-to-a-type-class/379870#3798701Answer by ja for Restricting a monad to a type classja2008-12-19T01:27:59Z2008-12-19T01:27:59Z<p>Are you familiar with Martin Erwig's library:<br />
<a href="http://web.engr.oregonstate.edu/~erwig/pfp/" rel="nofollow">http://web.engr.oregonstate.edu/~erwig/pfp/</a></p>