哈斯克尔国际 -> Word64 转换
这应该很简单。我有一个 Int,我想将其转换为 Word64。它永远不能小于 0。我不介意它是否有错误检查。看来我可以使用 fromIntegral 进行相反的转换,但我找不到反函数。
谢谢。
This should be pretty simple. I have an Int and I want to convert it to a Word64. It can never be less than 0. I don't mind if it has error checking or not. It seems I can do the opposite conversion using fromIntegral, but I can't find the inverse function.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,
应该完全能够从
Int
转换为Word64
,因为Int
是Integral
和的实例>Word64
是Num
的实例well,
should be perfectly capable of converting from
Int
toWord64
sinceInt
is an instance ofIntegral
andWord64
is an instance ofNum