Prototype's Enumerable#pluck in F#? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T09:05:39Z http://stackoverflow.com/feeds/question/76571 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/76571/prototypes-enumerablepluck-in-f 0 Prototype's Enumerable#pluck in F#? Michiel Borkent 2008-09-16T20:24:23Z 2008-09-17T19:09:47Z <p>In JavaScript, using the Prototype library, the following functional construction is possible:</p> <pre><code>var words = ["aqueous", "strength", "hated", "sesquicentennial", "area"]; words.pluck('length'); //-&gt; [7, 8, 5, 16, 4] </code></pre> <p>Note that this example code is equivalent to</p> <pre><code>words.map( function(word) { return word.length; } ); </code></pre> <p>I wondered if something similar is possible in F#:</p> <pre><code>let words = ["aqueous"; "strength"; "hated";"sesquicentennial"; "area"] //val words: string list List.pluck 'Length' words //int list = [7; 8; 5; 16; 4] </code></pre> <p>without having to write:</p> <pre><code>List.map (fun (s:string) -&gt; s.Length) words </code></pre> <p>This would seem quite useful to me because then you don't have to write functions for every property to access them.</p> http://stackoverflow.com/questions/76571/prototypes-enumerablepluck-in-f/79511#79511 1 Answer by Gavin for Prototype's Enumerable#pluck in F#? Gavin 2008-09-17T03:01:17Z 2008-09-17T03:22:16Z <p>Prototype's <code>pluck</code> takes advantage of that in Javascript <code>object.method()</code> is the same as <code>object[method]</code>. </p> <p>Unfortunately you can't call <code>String.Length</code> either because it's not a static method. You can however use:</p> <pre><code>#r "FSharp.PowerPack.dll" open Microsoft.FSharp.Compatibility words |&gt; List.map String.length </code></pre> <p><a href="http://research.microsoft.com/fsharp/manual/FSharp.PowerPack/Microsoft.FSharp.Compatibility.String.html" rel="nofollow">http://research.microsoft.com/fsharp/manual/FSharp.PowerPack/Microsoft.FSharp.Compatibility.String.html</a></p> <p>However, using <code>Compatibility</code> will probably make things more confusing to people looking at your code.</p> http://stackoverflow.com/questions/76571/prototypes-enumerablepluck-in-f/86084#86084 1 Answer by DannyAsher for Prototype's Enumerable#pluck in F#? DannyAsher 2008-09-17T18:19:21Z 2008-09-17T19:09:47Z <p>Hi Borkdude,</p> <p>I saw your request on the F# mailing list. Hope I can help. </p> <p>You could use type extension and reflection to allow this. We simple extend the generic list type with the pluck function. Then we can use pluck() on any list. An unknown property will return a list with the error string as its only contents.</p> <pre><code>type Microsoft.FSharp.Collections.List&lt;'a&gt; with member list.pluck property = try let prop = typeof&lt;'a&gt;.GetProperty property [for elm in list -&gt; prop.GetValue(elm, [| |])] with e-&gt; [box &lt;| "Error: Property '" + property + "'" + " not found on type '" + typeof&lt;'a&gt;.Name + "'"] let a = ["aqueous"; "strength"; "hated"; "sesquicentennial"; "area"] a.pluck "Length" a.pluck "Unknown" </code></pre> <p>which produces the follow result in the interactive window:</p> <pre> > a.pluck "Length" ;; val it : obj list = [7; 8; 5; 16; 4] > a.pluck "Unknown";; val it : obj list = ["Error: Property 'Unknown' not found on type 'String'"] </pre> <p>warm regards,</p> <p>DannyAsher</p> <p>> > > > ></p> <p>NOTE: When using <code>&lt;pre</code>> the angle brackets around <pre>&lt;'a></pre> didn't show though in the preview window it looked fine. The backtick didn't work for me. Had to resort you the colorized version which is all wrong. I don't think I'll post here again until FSharp syntax is fully supported. </p>