F# Deedle returns <fun:it@156-43> 的奇怪输出

F# Deedle returns strange output of <fun:it@156-43>

当我在行框架上使用 FirstKey 和 LastKey 时,我从 Deedle 得到了一个奇怪的输出。 cl 是以下示例中的 DataFrame。

cl.Rows.FirstKey 

returns: val it : (unit -> DateTime) = <fun:it@156-43> 在 FSI window.

cl.Rows.LastKey

returns: val it : (unit -> DateTime) = <fun:it@157-44> 在 FSI window.

我期待 DateTime 的键值。有人认识输出吗?我是否必须进行某种进一步处理才能获得有用的输出?

更新。我编辑了问题,以便现在可以看到 FSI window 的完整输出。

John Palmer 的评论解决了我的问题。在我的示例中编写 FirstKey 和 LastKey 函数的正确方法:

cl.Rows.FirstKey() 
cl.Rows.LastKey()