Content deleted Content added
m Date the maintenance tags or general fixes |
|||
Line 29:
* <code>fmap id = id -- identity</code>
* <code>fmap (f . g) = fmap f . fmap g -- composition</code>
==Mapping in .NET Procedural Languages==
The map function in .NET Procedural languages like C# or VB.NET (as of C# 2.0 and VB 8.0{{
<source lang="csharp">
|