show/hide this revision's text 6 added 27 characters in body

Hi Borkdude,

I saw your request on the F# mailing list. Hope I can help.

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.

NOTE: You will need to insert angle brackets around all instances of the

type parameter 'a as this editor removes these and the backtick escape doesn't seem to work for me, though the preview window works fine. I don't think I'll post here again until FSharp syntax is supported. 

type Microsoft.FSharp.Collections.List<'a> with
    member list.pluck property = 
        try 
            let prop = (typeof<'a>).GetProperty <'a>.GetProperty property 
            [for elm in list -> prop.GetValue(elm, [| |])]
        with e-> 
            [box <| "Error: Property '" + property + "'" + 
                            " not found on type '" + (typeof'a).Name <'a>.Name + "'"]

let a = ["aqueous"; "strength"; "hated"; "sesquicentennial"; "area"]

a.pluck "Length" 
a.pluck "Unknown"

which produces the follow result in the interactive window:

> 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'"]

warm regards,

DannyAsher

> > > > >

NOTE: When using <pre> the angle brackets around

<'a>
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.

show/hide this revision's text 5 deleted 19 characters in body

Hi Borkdude,

I saw your request on the F# mailing list. Hope I can help.

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.

NOTE: You will need to insert angle brackets around all instances of the type parameter 'a (like so `<'a>) as this editor removes these and the backtick escape doesn't seem to work for me, though the preview window works fine. I don't think I'll post here again until FSharp syntax is supported.

type Microsoft.FSharp.Collections.List'a <'a> with
    member list.pluck property = 
        try 
            let prop = (typeof 'a).GetProperty <'a>).GetProperty property 
            [for elm in list -> > prop.GetValue(elm, [| |])]
        with e-> 
            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"

which produces the follow result in the interactive window:

> 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'"]

warm regards,

DannyAsher

show/hide this revision's text 4 fix for angle bracket disappearing

Hi Borkdude,

I saw your request on the F# mailing list. Hope I can help.

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.

NOTE: You will need to insert angle brackets around all instances of the type parameter 'a (like so `<'a>) as this editor removes these and the backtick escape doesn't seem to work for me, though the preview window works fine. I don't think I'll post here again until FSharp syntax is supported.

type Microsoft.FSharp.Collections.List 'a with
    member list.pluck property = 
        try 
            let prop = typeof``.GetProperty (typeof 'a).GetProperty property 
            [for elm in list -> prop.GetValue(elm, [| |])]
        with e-> 
            [box 

`.Name + "'"]

let a = ["aqueous"; "strength"; "hated"; "sesquicentennial"; "area"]

a.pluck "Length" 
a.pluck "Unknown"

which produces the follow result in the interactive window:

> 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'"]

warm regards,

DannyAsher

show/hide this revision's text 3
show/hide this revision's text 2 deleted 49 characters in body
show/hide this revision's text 1