I am getting a strange output from Deedle when I use FirstKey and LastKey on a Frame of Rows. cl is a DataFrame in the below examples.
cl.Rows.FirstKey
returns: val it : (unit -> DateTime) = <fun:it@156-43>
in the FSI window.
cl.Rows.LastKey
returns: val it : (unit -> DateTime) = <fun:it@157-44>
in the FSI window.
I am expecting a Key Value of DateTime. Does anyone recognize the output? Do I have to do some kind of further processing to get useful output?
Update. I edited the question so that the complete output from the FSI window is now visible.