更改

无编辑摘要
第28行: 第28行:  
</syntaxhighlight>
 
</syntaxhighlight>
   −
但由于 <code>return</code> 是 <code>Monad</code> 版本的 <code>pure</code>,<code>ap</code> 是 <code>Monad</code> 版本的 <code>(&lt;*&gt;)</code>,为了方便也可如下实现
+
但由于 <code>return</code> 是 <code>Monad</code> 版本的 <code>pure</code>,<code>ap</code> 是 <code>Monad</code> 版本的 <code>(&lt;*&gt;)</code>,为了方便也可如下实现<ref>[[wikibooks:Haskell/Understanding_monads#liftM_and_Friends]]</ref>
    
<syntaxhighlight lang=haskell>
 
<syntaxhighlight lang=haskell>
第42行: 第42行:  
     fmap = liftM
 
     fmap = liftM
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
== 参考资料 ==
 +
 +
<references />