Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I get data from a 3rd party API that just gives me back a System.Object, which I know to be a double[] under the covers. And to deal with that return type, I have found the code below to work wonderfully. However, I also get back some int[] arrays that are also masquerading as System.Object, specifically dates in the form YYYYMMDD (e.g. 20100310).

The conversion to float fails, and it just says that the specified cast is not valid. Does anyone out there know how to make this work for integers?

let oIsNull (obj : System.Object) = obj = null
let oIsArray (obj : System.Object) = obj.GetType().IsArray

let o2f (obj : System.Object) = 
    let mutable arr = [|Double.NaN|]
    if (oIsNull obj = false) && (oIsArray obj = true) then
        let objArr = obj :?> obj[]
        let u = objArr.GetUpperBound(0)
        let floatArr : float[] = Array.zeroCreate (u  + 1);
        for i in 0..u do 
            if objArr.[i] = null then
                floatArr.[i] <- Double.NaN
            else 
                let t = objArr.[i].GetType() 
                floatArr.[i] <- objArr.[i] :?> float 
            //else floatArr.[i] <- float objArr.[i]
        arr <- floatArr
    arr
share|improve this question

1 Answer

up vote 5 down vote accepted

Do you mean that you want

floatArr.[i] <- float (objArr.[i] :?> int)

to do the object cast to int then promote to float?

Actually you would be better served by using pattern matching on types along the lines

open System

let o2f (obj : System.Object) =
  match obj with
  | :? array<float> as arr -> arr
  | :? array<int> as irr -> irr |> Array.map float 
  | _ -> [|Double.NaN|]
share|improve this answer
interesting - I suppose that's exactly what I'm trying to do. Thanks, that works. – fs_tech Mar 10 '10 at 21:25
I like the pattern matching example. Thanks a lot. – fs_tech Mar 10 '10 at 23:22
In this case, I would probably prefer using Array.map, which can be more efficient than Seq.map followed by toArray (because it can allocate the returned array in advance with the right length). – Tomas Petricek Mar 10 '10 at 23:56
You can tell that I don't often use arrays in my F# code :) – Steve Gilham Mar 11 '10 at 7:48
Am I missing something--shouldn't that last line be | _ -> [|Double.NaN|] Aren't you missing the final "]"? – Onorio Catenacci Mar 11 '10 at 19:09
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.