Prototype's Enumerable#pluck in F#? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T09:05:39Zhttp://stackoverflow.com/feeds/question/76571http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/76571/prototypes-enumerablepluck-in-f0Prototype's Enumerable#pluck in F#?Michiel Borkent2008-09-16T20:24:23Z2008-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');
//-> [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) -> 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#795111Answer by Gavin for Prototype's Enumerable#pluck in F#?Gavin2008-09-17T03:01:17Z2008-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 |> 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#860841Answer by DannyAsher for Prototype's Enumerable#pluck in F#?DannyAsher2008-09-17T18:19:21Z2008-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<'a> with
member list.pluck property =
try
let prop = typeof<'a>.GetProperty property
[for elm in list -> prop.GetValue(elm, [| |])]
with e->
[box <| "Error: Property '" + property + "'" +
" not found on type '" + typeof<'a>.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><pre</code>> the angle brackets around <pre><'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>